diff options
author | indrajith | 2022-10-01 14:07:36 +0000 |
---|---|---|
committer | indrajith | 2022-10-01 14:07:36 +0000 |
commit | 9665f6dcf69b2c4ad15503db638bb2b82e78893a (patch) | |
tree | b8e926cc11720710d62ddc0d2ff2e0a8860171ee /tailwind.config.js | |
parent | 98e0a1608cee0ae07da475aee3436846b2b109d9 (diff) | |
parent | bb50c7e11835154576c6f7a2a40cf2aaee6f4c60 (diff) | |
download | indrajith-dev-9665f6dcf69b2c4ad15503db638bb2b82e78893a.tar.gz indrajith-dev-9665f6dcf69b2c4ad15503db638bb2b82e78893a.tar.bz2 indrajith-dev-9665f6dcf69b2c4ad15503db638bb2b82e78893a.zip |
Merge pull request 'Theming & Page Changes' (#1) from feature/theming into master
Reviewed-on: https://git.indrajith.dev/indrajith/indrajith.dev/pulls/1
Diffstat (limited to 'tailwind.config.js')
-rw-r--r-- | tailwind.config.js | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/tailwind.config.js b/tailwind.config.js index cbcfb75..416c76e 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -12,6 +12,28 @@ module.exports = { "supply-regular": ["supplyRegular", "sans-serif"], "supply-light": ["supplyLight", "sans-serif"], }, + colors: { + darkish: { + 50: '#8d697a', + 100: '#544e68', + 200: '#203c56', + 300: '#0d2b45' + }, + lightish: { + 50: '#ffecd6', + 100: '#ffd4a3', + 200: '#ffaa5e', + 300: '#d08159' + }, + main: { + 'cream-white-1': "#fffffe", + 'dark-brown': "#33272a", + 'normal-brown': "#594a4e", + 'cream-white-2': "#faeee7", + 'dark-brown-2': "#33272a", + 'red': "#ff8ba7" + } + } }, }, plugins: [ |