-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
132 lines (125 loc) · 3.13 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
/** @type {import('tailwindcss').Config}*/
const TailwindConfig = {
theme: {
extend: {},
container: {
center: true,
padding: {
DEFAULT: '1rem',
sm: '2rem',
lg: '4rem',
xl: '5rem',
'2xl': '6rem'
}
},
fontFamily: {
heading: ['var(--font-rubik)', 'sans-serif'],
'sub-heading': ['var(--font-raleway)', 'sans-serif'],
body: ['var(--font-hind-vadodara)', 'sans-serif'],
sans: ['var(--font-hind-vadodara)', 'sans-serif'],
rubik: 'var(--font-rubik)',
raleway: 'var(--font-raleway)',
'hind-vadodara': 'var(--font-hind-vadodara)'
},
colors: {
neptune: {
50: '#f3faf7',
100: '#d8efe7',
200: '#b1decf',
300: '#78c2ad',
400: '#58a995',
500: '#3e8e7b',
600: '#2f7264',
700: '#295c52',
800: '#254a43',
900: '#223f39',
950: '#0f2421'
}
}
},
plugins: [require('@tailwindcss/typography'), require('daisyui')],
content: ['./src/**/*.{html,ts,tsx}'],
daisyui: {
themes: [
// {
// birthdayy: {
// primary: '#78c2ad',
// secondary: '#f2969a',
// accent: '#2dd4bf',
// neutral: '#252a31',
// 'base-100': '#18181B',
// info: '#0ea5e9',
// success: '#4ade80',
// warning: '#f59e0b',
// error: '#e9495c',
// dark: '#1D232A'
// }
// },
{
birthdayy: {
primary: '#78c2ad',
'primary-focus': '#40917e',
'primary-content': '#f8fcfa',
secondary: '#f2969a',
'secondary-focus': '#ed7076',
'secondary-content': '#f8fcfa',
accent: '#37cdbe',
'accent-focus': '#2ba69a',
'accent-content': '#f8fcfa',
neutral: '#2a2e37',
'neutral-focus': '#16181d',
'neutral-content': '#f8fcfa',
'base-100': '#18181B',
'base-200': '#131315',
'base-300': '#0e0f12',
'base-content': '#f8fcfa',
info: '#66c7ff',
success: '#4ade80',
warning: '#f59e0b',
error: '#e9495c',
'--rounded-box': '1.3rem',
'--rounded-btn': '.5rem',
'--rounded-badge': '1.9rem',
'--animation-btn': '.25s',
'--animation-input': '.2s',
'--btn-text-case': 'uppercase',
'--navbar-padding': '.5rem',
'--border-btn': '2px'
}
},
'dark',
'black',
'light',
'cupcake',
'bumblebee',
'emerald',
'corporate',
'synthwave',
'retro',
'cyberpunk',
'valentine',
'halloween',
'garden',
'forest',
'aqua',
'lofi',
'pastel',
'fantasy',
'luxury',
'dracula',
'cmyk',
'autumn',
'business',
'night',
'coffee',
'winter'
], // true: all themes | false: only light + dark | array: specific themes like this ["light", "dark", "cupcake"]
darkTheme: 'dark', // name of one of the included themes for dark mode
base: true, // applies background color and foreground color for root element by default
styled: true, // include daisyUI colors and design decisions for all components
utils: true, // adds responsive and modifier utility classes
prefix: '', // prefix for daisyUI classnames (components, modifiers and responsive class names. Not colors)
logs: false // Shows info about daisyUI version and used config in the console when building your CSS
}
};
module.exports = TailwindConfig;