-
Notifications
You must be signed in to change notification settings - Fork 3
/
tailwind.config.js
53 lines (52 loc) · 1.44 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
const colors = require("tailwindcss/colors");
module.exports = {
content: [
"./resources/views/**/*.blade.php",
"./resources/scss/**/*.scss",
"./resources/js/**/*.js",
"./resources/js/**/*.vue",
],
safelist: [
{ pattern: /-driller/ },
{ pattern: /-gunner/ },
{ pattern: /-engineer/ },
{ pattern: /-scout/ },
{ pattern: /(red|green)/ }
],
theme: {
extend: {
colors: {
green: colors.emerald,
yellow: colors.amber,
purple: colors.violet,
"karl-orange": {
DEFAULT: "#fc9e00",
},
driller: {
light: "#fffc31",
DEFAULT: "#fdfa00",
dark: "#cac800",
},
gunner: {
light: "#59a648",
DEFAULT: "#407734",
dark: "#335f29",
},
engineer: {
light: "#ff4131",
DEFAULT: "#fd1400",
dark: "#ca1000",
},
scout: {
light: "#5084fd",
DEFAULT: "#2566fd",
dark: "#0246e5",
},
},
},
},
plugins: [
require("@tailwindcss/typography"),
require("@tailwindcss/forms"),
],
};