generated from angus-boilerplates/LaraVellous
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
78 lines (66 loc) · 2.05 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
71
72
73
74
75
76
77
78
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: {
screens: {
'xxs': '375px',
'xs': '475px',
...defaultTheme.screens,
},
extend: {
fontFamily: {
serif: ['Comic Neue', ...defaultTheme.fontFamily.serif],
},
colors: {
primary: {
light2: "#745CB4",
light: "#6147A9",
DEFAULT: "#543E90",
dark: "#4A387A",
dark2: "#453964",
},
accent: {
light2: "#8EF645",
light: "#75E626",
DEFAULT: "#58D500",
dark: "#51BD04",
dark2: "#48A109",
dark3: "#265d03",
},
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],
};