aboutsummaryrefslogtreecommitdiffstats
path: root/tailwind.config.js
diff options
context:
space:
mode:
authorLibravatar Mo Tarbin <mhed.t91@gmail.com>2024-06-30 18:55:39 -0400
committerLibravatar Mo Tarbin <mhed.t91@gmail.com>2024-06-30 18:55:39 -0400
commit2657469964e24ffbeb905024532120395f6e797c (patch)
tree2fe9db8a4ecfa92d854ca94f7586d81163c8bd25 /tailwind.config.js
downloaddonetick-frontend-2657469964e24ffbeb905024532120395f6e797c.tar.gz
donetick-frontend-2657469964e24ffbeb905024532120395f6e797c.tar.bz2
donetick-frontend-2657469964e24ffbeb905024532120395f6e797c.zip
move to Donetick Org, First commit frontend
Diffstat (limited to 'tailwind.config.js')
-rw-r--r--tailwind.config.js24
1 files changed, 24 insertions, 0 deletions
diff --git a/tailwind.config.js b/tailwind.config.js
new file mode 100644
index 0000000..373e459
--- /dev/null
+++ b/tailwind.config.js
@@ -0,0 +1,24 @@
+export default {
+ content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
+ theme: {
+ extend: {
+ colors: {
+ ice: {
+ 50: '#CFECF7',
+ 100: '#B9E3F3',
+ 200: '#8DD1EC',
+ 300: '#61C0E5',
+ 400: '#36AEDD',
+ 500: '#2093C0',
+ 600: '#197599',
+ 700: '#135771',
+ 800: '#0C394A',
+ 900: '#061B23',
+ 950: '#020B0F',
+ },
+ },
+ },
+ },
+ darkMode: 'class',
+ plugins: [],
+}