-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
57 lines (56 loc) · 1.28 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
const colors = require('tailwindcss/colors')
module.exports = {
content: [
"./client/ui/**/*.{js,jsx,ts,tsx}",
"./client/*.html",
"node_modules/flowbite-react/**/*.{js,jsx,ts,tsx}",
],
theme: {
colors: {
primary: colors.red,
gray: colors.gray,
blue: colors.sky,
red: colors.rose,
pink: colors.fuchsia,
},
extend: {
colors: {
primary: {
'50': '#ffbfbf',
'100': '#ffb3b5',
'200': '#ff8083',
'300': '#ff4d51',
'400': '#ff1a1f',
'500': '#fb0010',
'600': '#cb0010',
'700': '#b3000e',
'800': '#80000a',
'900': '#4d0006',
'950': '#0d0001',
},
secondary: {
'50': '#f9f7f2',
'100': '#fbe4c7',
'200': '#BFAE90',
'300': '#e6c99d',
'400': '#f3be7f',
'500': '#efab5b',
'600': '#eb9937',
'700': '#b3742a',
'800': '#8a5a21',
'900': '#614018',
'950': '#3a270f',
}
},
fontFamily: {
sans: ['Helvetica Neue', 'Arial', 'ui-sans-serif', 'system-ui', 'sans-serif'],
},
},
},
darkMode: 'class',
plugins: [
require('flowbite/plugin')({
datatables: true,
}),
],
};