-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
45 lines (45 loc) · 1.33 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
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./resources/**/*.blade.php",
'./storage/framework/views/*.php',
'./config/support-bubble.php',
'./vendor/spatie/laravel-support-bubble/resources/views/**/*.blade.php',
],
theme: {
fontFamily: {
sans: ["Figtree", "sans-serif"],
},
extend: {
colors: {
blue: {
50: "#f0f5fe",
100: "#dce8fd",
200: "#c1d7fc",
300: "#97bff9",
400: "#659df5",
500: "#4179f0",
600: "#2c59e4",
700: "#2447d6",
800: "#233aaa",
900: "#223586",
950: "#192252",
},
yellow: {
50: "#fffdea",
100: "#fff7c5",
200: "#fff085",
300: "#ffe146",
400: "#ffcf1b",
500: "#fcac00",
600: "#e28400",
700: "#bb5c02",
800: "#984708",
900: "#7c3a0b",
950: "#481d00",
},
black: "#09090b",
},
},
},
};