-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.theme.js
62 lines (62 loc) · 1.63 KB
/
tailwind.config.theme.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
module.exports = {
colors: {
transparent: 'transparent',
current: 'currentColor',
inherit: 'inherit',
blue: {
night: '#203B62',
preusser: '#47729C',
sea: '#203B62',
grey: '#8ABCD9',
baby: '#BAD3F1',
},
green: {
copenhagen: '#06592F',
yes: '#25BBB0',
},
grey: {
dark: '#737882',
mid: '#D9D9D9',
light: '#F3F3F3',
},
yellow: {
bright: '#FFFFAC',
happy: '#F5CC5B',
},
'z-orange': '#FA4113',
turquoise: '#A1DDF7',
rose: '#E5C0D1',
terracotta: '#E0704E',
kardus: '#D0C2A8',
beige: '#BAAE95',
'band-aid': '#E8C7B6',
paper: '#FAF8F0',
black: '#231F20',
white: '#FFFFFF',
"dark-text": '#333333',
},
fontFamily: {
editorial: ['Italian Plate No2', 'Gotham SSm A', 'Gotham SSm B', 'Arial', 'Verdana', 'sans-serif'],
expanded: ['Italian Plate No2 Expanded', 'Gotham SSm A', 'Gotham SSm B', 'Arial', 'Verdana', 'sans-serif'],
operative: ['Italian Plate No2', 'Helvetica', 'Arial', 'Verdana', 'sans-serif'],
'body-copy': ['ff-meta-serif-web-pro', 'Georgia', 'Times', 'serif'],
'small-caps': ['ff-meta-serif-sc-web-pro', 'ff-meta-serif-web-pro', 'Georgia', 'Times', 'serif'],
},
extend: {
backgroundOpacity: {
95: '0.95',
},
borderWidth: {
3: '3px',
},
boxShadow: {
top: '0 -1px 3px 0 rgba(0, 0, 0, 0.1), 0 -1px 2px 0 rgba(0, 0, 0, 0.06)',
},
height: {
'80vh': '80vh',
},
width: {
80: '20rem',
},
},
};