-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
60 lines (59 loc) · 1.5 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
50
51
52
53
54
55
56
57
58
59
60
/** @type {import('tailwindcss').Config} */
const defaultTheme = require("tailwindcss/defaultTheme");
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
primary: {
100: "#FFC5BB",
300: "#FF8772",
500: "#FF4C10",
700: "#ED4811",
950: "#B7380C",
},
secondary: {
100: "#F3C1FF",
300: "#D74FFA",
500: "#B903E7",
700: "#9A00C0",
950: "#680085",
},
gray: {
white: "#FFFFFF",
light: "#95949B",
medium: "#242531",
dark: "#141524",
black: "#000000",
},
success: "#00C74F",
error: "#F20707",
info: "#21A7F9",
alert: "#FFE600",
},
keyframes: {
popup: {
"0%": { opacity: 0, transform: "scale(0.9)" },
"100%": { opacity: 1, transform: "rotate(1)" },
},
indeterminate: {
"0%": { transform: "translateX(0) scaleX(0)" },
"40%": { transform: "translateX(0) scaleX(0.4)" },
"100%": { transform: "translateX(100%) scaleX(0.5)" },
},
},
transitionTimingFunction: {
"in-out-back": "cubic-bezier(0.68, -0.55, 0.27, 1.55)",
},
},
screens: {
xs: "480px",
// => @media (min-width: 480px) { ... }
...defaultTheme.screens,
},
},
plugins: [require("@tailwindcss/line-clamp")],
};