-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
41 lines (41 loc) · 935 Bytes
/
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
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: 'class',
content: ["./src/**/*.{html,js}"],
theme: {
extend: {
colors: {
"gray-dark": {
100: "#CCD0D4",
200: "#c9d1d9",
400: "#8b949e",
500: "#2C3034",
600: "#1b1f22",
700: "#1C1F23",
800: "#252528",
900: "#212529",
},
"secondary": "#F5A937",
"dark": "#111315",
},
fontSize: {
'extra-small': '.65rem',
'device': '14px',
},
gridTemplateColumns: {
'projects': '148px 10px 148px 10px 148px',
},
gridTemplateRows: {
'projects': '20px 228px 10px 228px 20px',
},
spacing: {
'screen-view': 'calc(100vh - 80px)',
}
},
fontFamily: {
sans: ['Poppins', 'sans-serif'],
serif: ['Merriweather', 'serif'],
},
},
plugins: [],
}