-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.ts
58 lines (56 loc) · 1.44 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
49
50
51
52
53
54
55
56
57
58
import type { Config } from 'tailwindcss'
import plugin from 'tailwindcss/plugin'
const CustomStyle = plugin(function({addUtilities}) {
addUtilities({
".rotate-y-180" : {
transform: "rotateY(180deg)"
},
".preserve-3d" : {
transformStyle: "preserve-3d"
},
".perspective-1000" : {
perspective: "1000px"
},
".backface-hidden" : {
backfaceVisibility: "hidden"
}
})
})
const config: Config = {
content: [
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
backgroundImage: {
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
'gradient-conic':
'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))',
},
colors: {
white: "#ffffff",
whitish: "#f5f7ff",
transparent: "transparent",
black: "#0f0f14",
lightblue: "#edfdff",
purple: "#bb9af7",
orange: "#ff9e64",
pink: "#f7768e",
blue: "#7aa2f7",
green: "#9ece6a",
navy: "#344054",
yellow: "#E0AF68",
gray: "#BEC9CB",
darkGray: "#6B6B6B",
firstCardBackgroundFront: "#9AB1D1",
firstCardBackgroundBack: "##013B8C",
secondCardBackgroundFront: "#F2F2F2",
darkBlue: "#003B8C"
}
},
},
plugins: [CustomStyle],
}
export default config