-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
41 lines (41 loc) · 950 Bytes
/
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./app/templates/**/*.html",
"./app/static/**/*.js",
],
theme: {
extend: {
colors: {
success: '#4CAF50', // Green for success messages
info: '#2196F3', // Blue for info messages
warning: '#FF9800', // Orange for warning messages
primary: {
DEFAULT: '#FF6B6B',
dark: '#E05A5A',
},
secondary: {
DEFAULT: '#4ECDC4',
dark: '#3DBCB3',
},
background: '#F7FFF7',
text: '#1A535C',
accent: '#FFE66D',
error: '#FF6B6B',
},
fontFamily: {
sans: ['Inter', 'ui-sans-serif', 'system-ui', 'sans-serif'],
},
},
},
safelist: [
'bg-success',
'bg-info',
'bg-warning',
'bg-error',
'bg-primary',
'bg-secondary',
// add any other dynamic classes you might use
],
plugins: [],
}