-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.cjs
40 lines (39 loc) · 1010 Bytes
/
tailwind.config.cjs
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
/** @type {import('tailwindcss').Config} */
// eslint-disable-next-line @typescript-eslint/no-var-requires
const colors = require('tailwindcss/colors');
module.exports = {
content: ['./src/**/*.{js,jsx,ts,tsx}'],
theme: {
extend: {
dropShadow: {
'md-reverse': [
'0 -4px 3px rgba(0, 0, 0, 0.07)',
'0 -2px 2px rgba(0, 0, 0, 0.06)',
],
},
spacing: {
13: '3.25rem', // 52px
13.5: '3.375rem', // 54px
},
},
fontFamily: {
display: ['Noto Sans KR', 'Roboto', 'sans-serif'],
mono: ['Noto Sans Mono', 'monospace'],
},
colors: {
...colors,
primary: '#53B860',
'primary-hover': '#4FA55A',
secondary: '#333333',
text: '#333333',
error: colors.red[500],
active: colors.sky[500],
link: colors.sky[500],
placeholder: colors.gray[500],
disabled: colors.gray[500],
selected: '#F0F0F0',
'border-gray': '#C5C5C5',
},
},
plugins: [],
};