forked from alisamadiii/Portfolio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.ts
48 lines (47 loc) · 1.06 KB
/
tailwind.config.ts
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
import type { Config } from "tailwindcss";
const config: Config = {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
colors: {
background: "#111010",
foreground: "#FFFFFF",
muted: {
DEFAULT: "#737373",
2: "#A3A3A3",
3: "#d4d4d4",
},
box: "#262626",
border: "#404040",
},
boxShadow: {
"box-focus": "0 0 0 2px #111010, 0 0 0 4px white",
"input-focus": "0 0 0 2px #111010, 0 0 0 4px white",
},
animation: {
"badge-circle-expand": "badge-circle-expand 1s infinite linear",
},
height: {
dvh: "100dvh",
},
keyframes: {
"badge-circle-expand": {
from: {
transform: "scale(1)",
opacity: "1",
},
to: {
transform: "scale(2)",
opacity: "0",
},
},
},
},
},
plugins: [],
};
export default config;