-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.cjs
40 lines (37 loc) · 1.2 KB
/
tailwind.config.cjs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
const defaultTheme = require('tailwindcss/defaultTheme');
const config = {
content: [
'./src/**/*.{html,js,svelte,ts}',
"./node_modules/flowbite-svelte/**/*.{html,js,svelte,ts}",
],
theme: {
screens: {
'xs': '412px',
...defaultTheme.screens,
},
extend: {
colors: {
'pool-bg-from': '#0E7490',
'pool-bg-to': '#22D3EE',
'pool-fg': '#FFFFFF',
'openwater-bg-from': '#081F69', //'#1D4ED8', //'#3CD4BE',
'openwater-bg-to': '#3070B7', // '#06B6D4',
'openwater-fg': '#FFFFFF', //'#1D293A',
'classroom-bg-from': '#000000', //'#000', //'#9F123B',
'classroom-bg-to': '#888888', //'#FB7185', //'#FDE047'
'classroom-fg': '#FFFFFF',
'root-bg-light': '#FFFFFF',
'root-bg-dark': '#242420',
'status-pending': '#FFFF00',
'status-confirmed': '#00FF00',
'status-rejected': '#FF0000',
}
}
},
darkMode: 'media',
plugins: [
require('flowbite/plugin'),
require('daisyui'),
],
};
module.exports = config;