-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
52 lines (51 loc) · 1.3 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
const colors = require('tailwindcss/colors')
module.exports = {
purge: ['./src/**/*.{js,jsx,ts,tsx}', './public/index.html'],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
colors: {
blueGray: colors.blueGray,
coolGray: colors.coolGray,
gray: colors.gray,
trueGray: colors.trueGray,
warmGray: colors.warmGray,
red: colors.red,
orange: colors.orange,
amber: colors.amber,
yellow: colors.yellow,
lime: colors.lime,
green: colors.green,
emerald: colors.emerald,
teal: colors.teal,
cyan: colors.cyan,
lightBlue: colors.lightBlue,
indigo: colors.indigo,
violet: colors.violet,
purple: colors.purple,
fuchsia: colors.fuchsia,
pink: colors.pink,
rose: colors.rose,
white0: '#F2F2F2',
white1: '#d8dee4',
white2: '#9e9c9e',
white3: '#565656',
black1: '#161b22',
black2: '#0d1117',
blue1: '#313B49',
blue2: '#0C1B31',
blue3: '#051327',
gray1: '#D8DEE4',
purple1: '#C7D2FE',
purple2: '#A5B4FC',
purple3: '#818CF8',
purple4: '#7879F1',
purple5: '#4F46E5',
}
},
},
variants: {
extend: {},
},
plugins: [],
}