-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
70 lines (60 loc) · 1.9 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
58
59
60
61
62
63
64
65
66
67
68
69
70
import defaultTheme from 'tailwindcss/defaultTheme';
import forms from '@tailwindcss/forms';
import typography from '@tailwindcss/typography';
/** @type {import('tailwindcss').Config} */
export default {
content: [
'./vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php',
'./vendor/laravel/jetstream/**/*.blade.php',
'./storage/framework/views/*.php',
'./resources/views/**/*.blade.php',
'./resources/js/**/*.vue',
],
darkMode: 'media',
theme: {
extend: {
fontFamily: {
sans: ['Outfit', ...defaultTheme.fontFamily.sans],
},
colors: {
primary: {
light2: "#BBF48A",
light: "#91DC52",
DEFAULT: "#62b31e",
dark: "#559B1B",
dark2: "#4D861E",
},
accent: {
light2: "#7DBFF0",
light: "#509ED8",
DEFAULT: "#3087C7",
dark: "#347CB1",
dark2: "#2C6A98",
},
dark: {
light2: "#4A6682",
light: "#344D66",
DEFAULT: "#24384C",
dark: "#253442",
dark2: "#24313D",
},
light: {
light2: "#FFFFFF",
light: "#FAFAFA",
DEFAULT: "#F3F3F3",
dark: "#DEDEDE",
dark2: "#D0D0D0",
},
bgc:{
DEFAULT: "#F3F4F6",
dark: "#17202A",
},
txt: {
DEFAULT: "#94A2B8",
dark: "#334255",
}
},
},
},
plugins: [forms, typography],
};