-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
64 lines (63 loc) · 1.39 KB
/
tailwind.config.js
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/**/*.{js,jsx,ts,tsx}",
"./node_modules/flowbite/**/*.js",
],
theme: {
extend: {
colors: {
faded_white: "#D9D9D9",
faded_gray: "#CDCDCD",
faded_black: "#1D1D1D",
faded_blue: "#2C7BE5",
faded_green: "#2ECC71",
dark_blue1: "#011324",
dark_blue2: "#1A2A39",
light_blue1: "#0240a3",
light_blue2: "#2C7BE5",
light_blue3: "#1b53ac",
light_blue4:"#E1F7F5",
light_blue5: "#9AC8CD",
// Replace with your desired dark blue color code
},
fontFamily: {
'trap': [
'Trap-Light',
'Trap-Regular',
'Trap-Medium',
'Trap-Semibold',
'Trap-Bold',
'Trap-ExtraBold',
'Trap-Black',
'DTGetaiGroteskDisplay-Black',
'sans-serif',
],
},
textColor: {
'hover': 'var(--color-4)',
'hover-dark': 'var(--color-2)',
},
screens: {
'sm': '640px',
'md': '768px',
'lg': '1024px',
'xl': '1280px',
},
},
},
plugins: [
require('flowbite/plugin'),
require("daisyui")
],
daisyui: {
styled: true,
themes: false,
base: false,
utils: true,
logs: true,
rtl: false,
prefix: "",
darkTheme: "light",
},
}