-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.cjs
More file actions
38 lines (37 loc) · 926 Bytes
/
tailwind.config.cjs
File metadata and controls
38 lines (37 loc) · 926 Bytes
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
colors: {
BASE: '#FFC7C7',
HOVER: '#FDA4AF',
TEXT_BASE_BLACK: '#261204',
TEXT_SUB_GRAY: '#00000080',
INPUT_BORDER: '#D2D4D6',
BUTTON_DISABLED: '#CED1D4',
BUTTON_TEXT_DISABLED: '#9D9FA7',
GRAY_100: '#F4F4F5',
GRAY_200: '#E5E7EB',
},
borderRadius: {
404: '41% 59% 64% 36% / 39% 43% 57% 61%',
},
animation: {
shakeInput: 'shake 0.2s ease-out',
},
keyframes: {
shake: {
'25%': { transform: 'translate(4px)' },
'50%': { transform: 'translate(-4px)' },
'75%': { transform: 'translate(4px)' },
},
},
},
},
plugins: [require('daisyui')],
daisyui: {
styled: true,
themes: false,
},
};