-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
49 lines (49 loc) · 1.19 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
/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
darkMode: 'class',
theme: {
extend: {
fontFamily: {
sans: [
'Pretendard Variable',
'Pretendard',
'-apple-system',
'BlinkMacSystemFont',
'system-ui',
'Roboto',
'Helvetica Neue',
'Segoe UI',
'Apple SD Gothic Neo',
'Noto Sans KR',
'Malgun Gothic',
'Apple Color Emoji',
'Segoe UI Emoji',
'Segoe UI Symbol',
'sans-serif',
],
solano: ['solano-gothic-pro-mvb', 'sans-serif'],
},
colors: {
dayContent: '#333333',
dayBackground: '#FAFAFA',
dayGray: '#3F3F3F',
nightContent: '#E0E0E0',
nightBackground: '#0A192F',
dayPoint: '#4E1AC3',
dayPointHover: '#2C087B',
nightPoint: '#64FFDA',
nightPointHover: '#5BD2B6',
modalBackDrop: 'rgba(0, 0, 0, 0.5)',
},
boxShadow: {
wrap: '4px 4px #000',
wrapDark: '4px 4px #fff',
},
fontSize: {
title: '2rem',
},
},
},
plugins: [],
}