-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.cjs
70 lines (61 loc) · 1.79 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/**/*.{js,ts,jsx,tsx}",
"./node_modules/flowbite/**/*.{js,jsx,ts,tsx}",
],
theme: {
extend: {
colors: {
fogra_dark: "#041421",
fogra: "#041D29",
oxford_blue: "#042630",
prussian_blue: "#163941",
indigo_dye: "#284C52",
mn_blue: "#3A5F63",
queen_blue: "#4C7273",
shadow_blue: "#699692",
ciro_blue: "#499F9E",
steel_blue: "#8ABCB2",
steel_blue_light: "#ABC8C3",
alica_blue: "#BECFCD",
alica_blue_middle: "#D0D6D6",
alica_blue_light: "#E3E6E6",
ghost_white: "#F5F5F5",
purple: "#636792",
purple_light: "#9295B5",
eggplant: "#B92F2F",
eggplant_light: "#E34744",
golden: "#FBB623",
golden_light: "#FBC44B",
sea_green: "#3CB371",
sea_green_light: "#58CB8B",
blues: "#0C4C8A",
not_tahsil: "#D48155",
not_tahsil_light: "#E79468",
not_tahsil_dark: "#E37B43",
modal_bg: "#0000006E",
html_bg: "#F0F2F1",
dark_modal_bg: "#000000BF",
esprint_red: "#AC0B03",
esprint_gray: "#1A1A18",
},
fontFamily: {
'raleway': ['Raleway' , 'cursive'],
'righteous': ['Righteous' , 'cursive'],
'roboto': ['Roboto Slab' , 'serif'],
'rubik': ['Rubik', 'sans-serif']
},
boxShadow: {
'navbar': '0px 0px 10px 2px rgb(0 0 0 / 60%)',
'sidebar': '10px 0px 8px -4px rgb(0 0 0 / 35%)',
'table': '1px 1px 10px -2px rgb(150,150,150,1);',
'input': '1px 2px 8px -3px rgb(150,150,150,1)',
'button': '2px 2px 9px 1px rgb(150,150,150,1)'
}
},
},
plugins: [
require('flowbite/plugin')
]
}