-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.js
More file actions
43 lines (43 loc) · 1.17 KB
/
tailwind.config.js
File metadata and controls
43 lines (43 loc) · 1.17 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
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./resources/**/*.blade.php",
"./resources/**/*.js",
"./resources/**/*.vue",
],
theme: {
extend: {
colors: {
// Primary
'primary': '#ff5400',
'primary-hover': '#ffa700',
'fire-hover': '#ff2020',
// Neutrals
'very-light': '#b7b7b7',
'light': '#999',
'medium-light': '#6d6d6d',
'medium': '#3d3d3d',
'medium-dark': '#323232',
'dark': '#272727',
'very-dark': '#1d1d1d',
'ultra-dark': '#101010',
// Others
'opaque': 'rgba(0,0,0,0.75)',
},
fontFamily: {
'barlow': [
'Barlow',
'arial',
'sans-serif'
],
'audio': [
'AudioWide',
'Barlow',
'arial',
'sans-serif'
],
},
},
},
plugins: [],
}