-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
33 lines (32 loc) · 940 Bytes
/
tailwind.config.ts
File metadata and controls
33 lines (32 loc) · 940 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
import type { Config } from "tailwindcss";
import * as colors from "tailwindcss/colors";
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
aspectRatio: {
"16/9": "16 / 9",
"9/16": "9 / 16",
"1/1": "1 / 1"
},
animation: {
'scale-x-back-forth': 'scale-x-back-forth 1s infinite',
},
keyframes: {
'scale-x-back-forth': {
'0%': { transform: 'scaleX(-1)' },
'50%': { transform: 'scaleX(1)' },
'100%': { transform: 'scaleX(-1)' },
},
},
},
colors: {
primary: "#8aa6a8",
pinkish: "#9C8AA8",
orangeish: "#A88C8A",
"muted-green": "#96A88A",
...colors
}
},
plugins: []
} satisfies Config;