From aaa2da4e22be420891a00bb1b33bdfc431db80bd Mon Sep 17 00:00:00 2001 From: Indrajith K L Date: Fri, 30 Sep 2022 18:19:17 +0530 Subject: Theming: IN-PROGRESS --- tailwind.config.js | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) (limited to 'tailwind.config.js') diff --git a/tailwind.config.js b/tailwind.config.js index cbcfb75..bacfb5c 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: { + background: "#fffffe", + hadline: "#33272a", + subheadline: "#594a4e", + cardbackground: "#faeee7", + cardheading: "#33272a", + cardparagraph: "#594a4e", + } + } }, }, plugins: [ -- cgit v1.2.3 From 62ed7b262455d2535085903ef5bfd62b699dd89c Mon Sep 17 00:00:00 2001 From: Indrajith K L Date: Sat, 1 Oct 2022 19:31:46 +0530 Subject: Theming & CV Changes * Adds New Color themes based on happyhues * Adds CV - In-Progress --- tailwind.config.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'tailwind.config.js') diff --git a/tailwind.config.js b/tailwind.config.js index bacfb5c..416c76e 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -26,12 +26,12 @@ module.exports = { 300: '#d08159' }, main: { - background: "#fffffe", - hadline: "#33272a", - subheadline: "#594a4e", - cardbackground: "#faeee7", - cardheading: "#33272a", - cardparagraph: "#594a4e", + 'cream-white-1': "#fffffe", + 'dark-brown': "#33272a", + 'normal-brown': "#594a4e", + 'cream-white-2': "#faeee7", + 'dark-brown-2': "#33272a", + 'red': "#ff8ba7" } } }, -- cgit v1.2.3