-
Notifications
You must be signed in to change notification settings - Fork 5
/
tailwind.config.js
74 lines (73 loc) · 2 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
67
68
69
70
71
72
73
74
/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
darkMode: 'class',
theme: {
extend: {
colors: {
'input-white': '#FFF',
'article-highly-liked': '#24736B',
'article-img': '#2D2D2D',
'profile-bg': '#EEF1F4',
'lazy-gray': '#C0C1C5',
'cooled-blue': '#76B7B1',
'extra-white': '#EFF0EB',
'wall-street': '#697279',
'footer-icon': '#455154',
'tricorn-black': '#2D2D2D',
'error-red': '#CE395F',
'light-violet': '#75609E',
'tertiory-gray': '#9BA5B7',
'primary-black': '#141619',
'dark-primary': '#313E43',
'pigeon-body': '#375160',
},
fontFamily: {
Cafe24Surround: ['Cafe24Surround'],
Cafe24SurroundAir: ['Cafe24SurroundAir'],
Pretendard: ['Pretendard'],
},
keyframes: {
zoomin: {
from: { transform: 'scale(0) translate(-50%, -50%)' },
to: { transform: 'scale(1) translate(-50%, -50%)' },
},
},
animation: {
modalZoomIn: 'zoomin 200ms ease-in-out',
},
},
letterSpacing: {
tighter: '-0.15rem',
toast: '-0.05rem',
},
boxShadow: {
'article-container': '0px 2px 5px 0px rgba(0, 0, 0, 0.25)',
},
},
// eslint-disable-next-line no-undef
plugins: [require('daisyui')],
// darkMode: 'class',
daisyui: {
themes: [
{
mytheme: {
'input-white': '#FFF',
'article-highly-liked': '#24736B',
'article-img': '#2D2D2D',
'profile-bg': '#EEF1F4',
'lazy-gray': '#C0C1C5',
'cooled-blue': '#76B7B1',
'extra-white': '#EFF0EB',
'wall-street': '#697279',
'footer-icon': '#455154',
'tricorn-black': '#2D2D2D',
'error-red': '#CE395F',
'light-violet': '#75609E',
'tertiory-gray': '#9BA5B7',
'primary-black': '#141619',
},
},
],
},
};