-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
41 lines (40 loc) · 1022 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
/** @type {import('tailwindcss').Config} */
const defaultTheme = require('tailwindcss/defaultTheme');
export default {
content: [
'./index.html',
// 경로는 파일 구조에 맞게 수정 필요,
'./src/**/*.{js,ts,jsx,tsx}',
'./node_modules/tw-elements-react/dist/js/**/*.js',
],
theme: {
extend: {
fontFamily: {
sans: ['"SUIT-Regular"', ...defaultTheme.fontFamily.sans],
},
screens: {
sm: '640px',
md: '768px',
lg: '1024px',
xl: '1280px',
'2xl': '1536px',
},
colors: {
blackish: '#000000',
whitish: '#ffffff',
grayish: '#E7E4E4',
danger: '#DC4C64',
deepblue1: '#1b2f55',
deepblue2: '#284377',
blue1: '#4a5f90',
blue2: '#7e93ba',
blue3: '#9fb8d2',
},
backgroundImage: {
'dark-logo': "url('/src/assets/darkLogo.png')",
},
},
},
darkMode: 'class',
plugins: [require('tw-elements-react/dist/plugin.cjs')],
};