-
Notifications
You must be signed in to change notification settings - Fork 74
Expand file tree
/
Copy pathtailwind.config.js
More file actions
56 lines (54 loc) · 1.63 KB
/
tailwind.config.js
File metadata and controls
56 lines (54 loc) · 1.63 KB
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
// import preset from "./vendor/filament/support/tailwind.config.preset";
/** @type {import('tailwindcss').Config} */
export default {
// presets: [preset],
content: [
"./resources/**/*.blade.php",
"./resources/**/*.js",
"./resources/**/*.vue",
],
theme: {
extend: {
colors: {
primary: {
50: '#EEEEFB',
100: '#DCDCF7',
200: '#B9B8EF',
300: '#9795E6',
400: '#7471DE',
500: '#524ED5',
600: '#413CAD',
700: '#342F8A',
800: '#2D2B8D', // base primary
900: '#1E1C5A',
},
secondary: {
50: '#FFFBEB',
100: '#FFF6D6',
200: '#FFEDAD',
300: '#FFE585',
400: '#FFDC5C',
500: '#FFD333',
600: '#FFC903', // base secondary
700: '#E6B500',
800: '#BF9600',
900: '#997800',
},
background: {
white: '#FFFFFF',
wheat: '#F9F6F0',
light: '#F5F1E8',
subtle: '#EDE7DB',
},
success: '#10B981',
error: '#EF4444',
warning: '#F59E0B',
info: '#3B82F6',
},
},
},
plugins: [
require("@tailwindcss/forms"),
require("@tailwindcss/typography"),
],
};