-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathtailwind.config.js
More file actions
59 lines (59 loc) · 1.21 KB
/
Copy pathtailwind.config.js
File metadata and controls
59 lines (59 loc) · 1.21 KB
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
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: ['class', '[data-theme="dark"]'],
content: [
'node_modules/flowbite-react/**/*.{js,jsx,ts,tsx}',
'./index.html',
'./src/**/*.{js,ts,jsx,tsx}',
],
theme: {
extend: {
colors: {
accent: {
DEFAULT: '#0f7a63',
dark: '#35d0a5',
muted: '#5ba3b0',
},
ground: '#f4f7f6',
surface: {
DEFAULT: '#ffffff',
dark: '#17201d',
},
base: {
DEFAULT: '#f4f7f6',
dark: '#101715',
},
ink: {
DEFAULT: '#131d1a',
dark: '#e3ece9',
},
muted: {
DEFAULT: '#5c6b66',
dark: '#8fa39c',
},
line: {
DEFAULT: '#d5ddda',
dark: '#2a3733',
},
},
fontFamily: {
sans: [
'Inter',
'system-ui',
'-apple-system',
'Segoe UI',
'Roboto',
'sans-serif',
],
mono: [
'ui-monospace',
'SFMono-Regular',
'Menlo',
'Consolas',
'monospace',
],
},
},
},
plugins: [require('flowbite/plugin')],
};