forked from archway-network/archway-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
44 lines (43 loc) · 1010 Bytes
/
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
const defaultTheme = require('tailwindcss/defaultTheme');
const typographyPlugin = require('./src/tailwindcss.plugins/typography');
module.exports = {
darkMode: ['class', '[data-theme="dark"]'],
content: ['./src/**/*.{js,jsx,ts,tsx}'],
theme: {
fontFamily: {
sans: ['TWK Everett', ...defaultTheme.fontFamily.sans],
},
extend: {
colors: {
black: {
DEFAULT: '#000000',
warm: '#242424',
},
gray: {
100: '#F7F7F7',
200: '#dddddd',
300: '#a5a5a5',
400: '#3a3a3a',
DEFAULT: '#555555',
600: '#808080',
800: '#999999',
900: '#101010',
},
orange: {
DEFAULT: '#ff4d00',
},
},
boxShadow: {
card: '16px 32px 128px -8px rgba(0, 0, 0, 0.07)',
},
},
container: {
center: true,
padding: {
DEFAULT: '1.5rem',
lg: '2rem',
},
},
},
plugins: [typographyPlugin],
};