-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
47 lines (46 loc) · 1007 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
42
43
44
45
46
47
const defaultTheme = require('tailwindcss/defaultTheme');
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{html,ts}'],
future: {
hoverOnlyWhenSupported: true,
},
theme: {
colors: {
action: {
primary: '#2984a5',
secondary: '#9a90b4',
},
semantic: {
success: '#8db14b',
warning: '#fca321',
danger: '#dd452e',
},
},
fontFamily: {
sans: ['"Roboto"', ...defaultTheme.fontFamily.sans],
},
extend: {
textColor: {
primary: '#f7f5f1',
secondary: '#a5a096',
inverse: '#313231',
},
backgroundColor: {
primary: '#313231',
secondary: '#3a3b3b',
tertiary: '#5d6263',
inverse: '#f7f5f1',
},
borderColor: {
primary: '#f7f5f1',
secondary: '#a5a096',
transparent: 'transparent',
},
caretColor: {
primary: '#f7f5f1',
},
},
},
plugins: [],
};