-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
58 lines (57 loc) · 1.28 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
/*
** TailwindCSS Configuration File
**
** Docs: https://tailwindcss.com/docs/configuration
** Default: https://github.com/tailwindcss/tailwindcss/blob/master/stubs/defaultConfig.stub.js
*/
const colors = require('tailwindcss/colors')
module.exports = {
theme: {
colors: {
gray: colors.slate,
white: colors.white,
green: colors.teal,
red: colors.pink,
yellow: colors.yellow,
current: 'currentColor',
},
extend: {
colors: {
sogblue: {
lightest: '#CCF1FF',
lighter: '#71C5EA',
light: '#57B4DC',
DEFAULT: '#0098CF',
default: '#0098CF', // work around for @apply
dark: '#007EBB',
darker: '#00679E',
darkest: '#003D5E',
transparent: '#00679EAA',
},
gray: {
greenish: '#B7CE8D',
reddish: '#C78086',
yellowish: '#D9D279',
},
black: {
transparent: '#000000AA',
DEFAULT: '#000000',
},
},
screens: {
xs: '420px',
},
},
},
darkMode: 'class',
variants: {
extend: {
opacity: ['dark'],
borderWidth: ['dark'],
ringWidth: ['hover'],
ringOpacity: ['hover'],
ringColor: ['hover'],
},
},
plugins: [],
}