-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
30 lines (29 loc) · 772 Bytes
/
tailwind.config.js
File metadata and controls
30 lines (29 loc) · 772 Bytes
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
// tailwind.config.js
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: 'class',
content: [
"./resources/**/*.blade.php",
"./resources/**/*.js",
"./resources/**/*.jsx",
],
theme: {
extend: {
colors: {
dark: {
DEFAULT: '#121212',
paper: '#1E1E1E',
light: '#2D2D2D',
accent: '#2196F3',
primary: '#1115c1',
secondary: '#4F46E5',
success: '#03DAC6',
error: '#CF6679',
warning: '#FFAB00',
info: '#2196F3',
},
},
},
},
plugins: [],
}