-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.js
More file actions
35 lines (35 loc) · 891 Bytes
/
tailwind.config.js
File metadata and controls
35 lines (35 loc) · 891 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/**/*.{js,ts,jsx,tsx,mdx}",
"./src/stories/**/*.{js,ts,jsx,tsx,mdx}",
"./.storybook/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
backgroundImage: {
paper: "url('/image/paper_texture.jpeg')",
},
colors: {
"main-yellow": "#FFC940",
},
borderColor: {
"main-yellow": "#FFC940",
},
keyframes: {
fadeIn: {
"0%": { opacity: "0", filter: "blur(10px)" },
"100%": { opacity: "1", filter: "blur(0px)" },
},
},
},
fontFamily: {
ownglyph_wiseelist: ["var(--font-Ownglyph_wiseelist)"],
},
},
plugins: [],
};