-
Notifications
You must be signed in to change notification settings - Fork 5
/
tailwind.config.js
66 lines (64 loc) · 1.57 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
61
62
63
64
65
66
const defaultTheme = require('tailwindcss/defaultTheme');
const colors = require('tailwindcss/colors');
const { fontWeight } = require('tailwindcss/defaultTheme');
module.exports = {
purge: false,
theme: {
extend: {
screens: {
'print': {'raw': 'print'},
},
colors: {
purple: {
50: '#F6F5FF',
100: '#E9E1F8',
200: '#CFBCF2',
300: '#A081D9',
400: '#8662C7',
500: '#724BB7',
600: '#663BAD',
700: '#51279B',
800: '#421887',
900: '#341270',
1000: '#240754',
},
coolgray: colors.coolGray,
gray: colors.warmGray,
lightblue: colors.lightBlue,
teal: colors.teal,
rose: colors.rose,
amber: colors.amber,
},
fontFamily: {
sans: ['Inter var', 'Inter', ...defaultTheme.fontFamily.sans],
header: ['Inter var', 'Inter', ...defaultTheme.fontFamily.sans],
mono: ['Source Code Pro', ...defaultTheme.fontFamily.mono],
},
transitionProperty: {
'max-height': 'max-height',
},
typography: {
DEFAULT: {
css: {
'code': {
fontWeight: "700",
},
'code::before': {
content: '""',
},
'code::after': {
content: '""',
}
}
}
},
},
},
variants: {
visibility: ['responsive', 'group-hover'],
},
plugins: [
require('@tailwindcss/typography'),
require('@tailwindcss/aspect-ratio'),
]
}