-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
52 lines (49 loc) · 1.11 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
/* eslint-disable @typescript-eslint/no-var-requires */
const defaultTheme = require('tailwindcss/defaultTheme');
module.exports = {
content: ['./src/pages/*', './src/components/**/*.tsx'],
darkMode: 'class',
theme: {
extend: {
fontFamily: {
mono: ['Poppins', ...defaultTheme.fontFamily.mono],
},
},
spacing: {
xxs: '4px',
xs: '8px',
md: '16px',
xmd: '24px',
lg: '32px',
xlg: '40px',
xxlg: '64px',
xxxlg: '96px',
project_image: '150px',
card_image: '250px',
card_h: '450px',
card_w: '300px',
project_w: '550px',
ranking_w: '550px',
card_min_w: '250px',
},
colors: {
transparent: 'transparent',
current: 'currentColor',
background: '#F5F8FA',
blocked: '#AFAFAF',
button: '#F18F01',
card: '#7EBDC2',
primary: '#0075FF',
ranking: '#B2EDFF',
secondary: '#b5179e',
start_button: '#2a9d8f',
text: '#302c2c',
text_contrast: '#FFFFFF',
dark_contrast: '#2b2d42',
},
},
variants: {
extend: {},
},
plugins: [],
};