-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
46 lines (41 loc) · 1.36 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
const defaultTheme = require("tailwindcss/defaultTheme");
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php",
"./storage/framework/views/*.php",
"./resources/views/**/*.blade.php",
"./resources/js/**/*.vue",
],
darkMode: "class",
theme: {
extend: {
fontFamily: {
sans: ["Figtree", ...defaultTheme.fontFamily.sans],
},
colors: {
'admin-body': '#1d1f20',
'admin-body-light': '#f4f7f6',
'admin-card': '#212324',
'primary-color': '#2794eb',
'secondary-color-dark': '#00C894',
'secondary-color-light': '#00AC9A',
'secondary-color': {
100: '#3ED0A9',
200: '#3ED0A9',
300: '#00946C',
400: '#007A5A',
500: '#15473A',
600: '#004734'
},
'light-gray': '#E0E0E0',
'gray-750': '#353535',
'indigo-09': '#6382D8'
},
boxShadow: {
'shadow-input-search': ''
}
},
},
plugins: [require("@tailwindcss/forms")],
};