-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
60 lines (60 loc) · 1.22 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
const colors = require('tailwindcss/colors')
module.exports = {
content: [
'./src/*.html',
'./src/*.ts',
'./src/*.tsx',
'./src/**/*.tsx'
],
darkMode: 'media', // or 'media' or 'class'
theme: {
fontSize: {
'xs': '.6875rem',
'sm': '.8125rem',
'base': '.9375rem',
'lg': '1.0625rem',
'xl': '1.1875rem',
},
colors: {
transparent: 'transparent',
current: 'currentColor',
black: colors.black,
white: colors.white,
gray: colors.trueGray,
pink: colors.pink,
purple: colors.purple,
blue: colors.blue,
text: {
light: '#111111',
DEFAULT: '#111111',
dark: '#FFFFFF',
},
secondaryText: {
light: '#666666',
DEFAULT: '#666666',
dark: '#999999',
},
interfaceBorder: {
light: '#F3F3F3',
DEFAULT: '#F3F3F3',
dark: '#2D2D2D'
},
groupBackground: {
light: '#FFFFFF',
DEFAULT: '#FFFFFF',
dark: '#333333'
},
systemBackground: {
light: '#FFFFFF',
DEFAULT: '#FFFFFF',
dark: '#222222'
},
},
},
variants: {
extend: {},
},
plugins: [
require('autoprefixer'),
],
}