-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
79 lines (78 loc) · 2.32 KB
/
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
const defaultTheme = require("tailwindcss/defaultTheme");
module.exports = {
theme: {
extend: {
colors: {
'navy': {
100: '#e6eaf3',
200: '#bfcbe1',
300: '#99accf',
400: '#4d6daa',
500: '#002f86',
600: '#002a79',
700: '#001c50',
800: '#00153c',
900: '#000e28',
},
'gray': {
100: '#e9eaea',
200: '#c9cbcc',
300: '#a8acad',
400: '#666e6f',
500: '#253031',
600: '#212b2c',
700: '#161d1d',
800: '#111616',
900: '#0b0e0f',
},
'blue': {
100: '#eaf2f6',
200: '#cadde7',
300: '#a9c9d9',
400: '#69a1bd',
500: '#2978a0',
600: '#256c90',
700: '#194860',
800: '#123648',
900: '#0c2430',
},
'gold': {
100: '#f8f7f2',
200: '#eeeade',
300: '#e4ddc9',
400: '#d0c4a1',
500: '#bcab79',
600: '#a99a6d',
700: '#716749',
800: '#554d36',
900: '#383324',
},
'cyan': {
100: '#f9fcff',
200: '#f1f7ff',
300: '#e8f3ff',
400: '#d7e9ff',
500: '#c6e0ff',
600: '#b2cae6',
700: '#778699',
800: '#596573',
900: '#3b434d',
},
},
fontFamily: {
serif: ["Roboto Slab", "serif"]
},
opacity: {
'0': '0',
'10': '0.10',
'20': '0.20',
'25': '0.25',
'50': '0.5',
'75': '0.75',
'100': '1',
},
}
},
variants: {},
plugins: []
};