-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
40 lines (39 loc) · 1.24 KB
/
Copy pathtailwind.config.js
File metadata and controls
40 lines (39 loc) · 1.24 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
import defaultTheme from 'tailwindcss/defaultTheme';
/** @type {import('tailwindcss').Config} */
export default {
content: [
'./vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php',
'./storage/framework/views/*.php',
'./resources/**/*.blade.php',
'./resources/**/*.js',
'./resources/**/*.vue',
],
theme: {
fontFamily: {
"open-sans": ["'Open Sans'", 'sans-serif'],
"inter": ['"Inter"', 'sans-serif'],
"roboto": ['"Roboto"', 'sans-serif'],
"inria-sans": ['"Inria Sans"', 'sans-serif']
},
extend: {
colors: {
"red-telkom": "#9f1521",
"red-telkom-hover": "#5f0d14",
'carmine': {
'50': '#fff1f2',
'100': '#ffe1e4',
'200': '#ffc8cd',
'300': '#ffa1a9',
'400': '#fe6b78',
'500': '#f73c4c',
'600': '#e51d2e',
'700': '#c01524',
'800': '#9f1521',
'900': '#841821',
'950': '#48070d',
},
}
},
},
plugins: [],
};