-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.cjs
50 lines (50 loc) · 1.19 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
41
42
43
44
45
46
47
48
49
50
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{html,js,svelte,ts}', './node_modules/flowbite-svelte/**/*.{html,js,svelte,ts}'],
theme: {
extend: {
colors: {
darkGreen: "#264653",
darkGreenHover: "#1b323b",
teal: "#029987",
tealHover: "#218074",
yellow: "#e6b335",
yellowHover: "#c99d2c",
orange: "#e35936",
orangeHover: "#c74e30",
background: "#1c1c1c",
darkBG: "#121212",
cardBG: "#353536",
cardBGHover: "#494a4a",
primary: {
50: '#FFF5F2',
100: '#FFF1EE',
200: '#FFE4DE',
300: '#FFD5CC',
400: '#FFBCAD',
500: '#FE795D',
600: '#EF562F',
700: '#EB4F27',
800: '#CC4522',
900: '#A5371B'
}
},
},
screens: {
desktop: "801px",
mobile: {
max: "800px",
},
profileMobile: {
max: "569px",
},
profileDesktop: "570px",
workoutModalMobile: {
max: "519px",
},
workoutModalDesktop: "520px",
},
},
plugins: [require('flowbite/plugin')],
darkMode: 'selector',
};