forked from yhwabillie/shopping
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
36 lines (36 loc) · 884 Bytes
/
tailwind.config.js
File metadata and controls
36 lines (36 loc) · 884 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
/** @type {import('tailwindcss').Config} */
module.exports = {
important: true,
content: [
'./app/**/*.{js,ts,jsx,tsx,mdx}', // Note the addition of the `app` directory.
'./lib/components/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
fontFamily: {
matemasie: ['Matemasie', 'sans-serif'],
},
keyframes: {
marquee: {
'0%': { transform: 'translateX(0)' },
'100%': { transform: 'translateX(-50%)' },
},
},
animation: {
marquee: 'marquee 10s linear infinite',
},
colors: {
primary: {
DEFAULT: '#B04A4A', // 벽돌색
},
secondary: {
DEFAULT: '#660000', // 노랑색
},
accent: {
DEFAULT: '#333333', // 짙은회색
},
},
},
},
plugins: [[require('@tailwindcss/aspect-ratio')]],
}