-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathtailwind.config.js
More file actions
37 lines (36 loc) · 865 Bytes
/
tailwind.config.js
File metadata and controls
37 lines (36 loc) · 865 Bytes
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
export default {
content: [
'./resources/**/*.antlers.html',
'./resources/**/*.antlers.php',
'./resources/**/*.blade.php',
'./resources/**/*.vue',
'./content/**/*.md',
],
theme: {
boxShadow: {
DEFAULT: '0 20px 0px -10px black',
none: 'none',
},
colors: {
transparent: 'transparent',
black: '#000000',
white: '#ffffff',
aqua: '#20d2ff',
'aqua-light': '#7cdcf5',
blue: '#0030ff',
red: '#bf0000',
gray: '#eeeeee',
},
fontFamily: {
mono: [
'ibm_vga8',
'monospaced'
],
},
fontSize: {
base: '1.35rem',
lg: '1.55rem',
xl: '2rem',
},
},
};