-
Notifications
You must be signed in to change notification settings - Fork 31
/
tailwind.config.js
57 lines (55 loc) · 1.33 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
const defaultTheme = require('tailwindcss/defaultTheme');
module.exports = {
content: [
'./app/forms/**/*.liquid',
'./app/views/**/*.liquid',
'./src/js/**/*.js',
'./modules/graphql/template/*.mustache',
],
theme: {
extend: {
colors: {
'body': '#4a4a4a',
pos: {
'blue': '#3A8DDE',
'darkblue': '#194F90',
'searchblue': '#2173C4',
'page-bg': '#F5F6FC',
'divider': '#dddddd',
'search': '#767676',
'green': '#45A041',
'tip-bg': '#EEEEF2',
'tip-text': '#6F7286',
'note-bg': '#E2EEFA',
'note-text': '#2E71B2',
'important-bg': '#FFF3E6',
'important-text': '#B35C00',
'warning-bg': '#FFE9EE',
'warning-text': '#AA002C',
'success-bg': '#E9F3E8',
'success-text': '#166D12',
'icon-feedback': '#8589A0'
},
carbon: {
brand: '#00ffbc',
text: '#0e11a8'
}
},
boxShadow: {
box: '0px 8px 18px rgba(52, 61, 75, 0.3)'
},
fontFamily: {
sans: ['Gotham', ...defaultTheme.fontFamily.sans],
},
spacing: {
'72': '18rem',
'84': '21rem',
'96': '24rem',
}
},
container: {
center: true,
padding: '0'
}
},
};