-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.cjs
88 lines (86 loc) · 2.37 KB
/
tailwind.config.cjs
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
79
80
81
82
83
84
85
86
87
88
const colors = require('tailwindcss/colors');
const defaultTheme = require("tailwindcss/defaultTheme");
module.exports = {
mode: 'jit',
important: true,
purge: [
'./resources/**/*.blade.php',
'./resources/**/*.js',
],
theme: {
fontFamily: {
sans: ["Inter", ...defaultTheme.fontFamily.sans],
mono: ["JetBrains Mono", ...defaultTheme.fontFamily.mono]
},
colors: {
transparent: 'transparent',
current: 'currentColor',
spatie: '#197593',
wordpress: '#007fa2',
midnight: '#1E0063',
midnightDark: '#13052B',
black: "#1e0063",
white: colors.white,
gray: colors.gray,
slate: colors.slate,
red: colors.red,
yellow: colors.amber,
green: colors.green,
blue: colors.blue,
purple: colors.purple,
indigo: {
100: "#efebff",
200: "#c6b0f2",
300: "#9e76e4",
400: "#763bd7",
500: "#4d00c9",
600: "#3e02a1",
700: "#2f0379",
800: "#180051",
900: "#160042",
},
orange: {
100: "#fff0e8",
200: "#ffc9ae",
300: "#ffa374",
400: "#ff7c3a",
500: "#ff6c00",
600: "#ff3500",
700: "#cf2b00",
800: "#9c2000",
900: "#5c1300",
},
},
extend: {
transitionProperty: {
'border': 'border, border-color',
},
minWidth: {
8 : '2rem',
10 : '2.5rem',
12 : '3rem',
},
fontSize: {
xxs: '0.7rem',
'px-xs': '10px',
'px-sm': '12px',
'px-base': '14px',
},
backgroundOpacity: {
10 : '0.1',
30 : '0.3'
},
gridTemplateColumns: {
'auto-1fr' : 'auto 1fr',
}
},
},
variants: {
extend: {
translate: ['group-hover', 'active'],
scale: ['group-hover'],
zIndex: ['hover']
},
},
plugins: [],
};