-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.ts
60 lines (59 loc) · 1.65 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
59
60
import type { Config } from 'tailwindcss'
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: {
extend: {
colors: {
primary_background: "#0a1329",
subtle: "#828299",
admin: "#1E1E1E",
admin_bg: "#111317",
admin_fg: "#1A1C22",
onyx: "#0E0E2C",
bauble: "#ffd9d9",
koble_primary: "#DD2222",
koble_primaryHighlight: "#e43535",
koble_secondary: "#181a1b",
koble_background: "#1E1E1E",
koble_backgroundTwo: "#404040",
koble_backgroundThree: "#313131",
koble_subtle: "#828299",
koble_accent: "#edf1f2",
koble_border: "#ffffff",
koble_highlight: "rgba(255, 255, 255, 0.1)",
koble_purpleNight:"rgba(102,120,255,0.1)",
koble_overlay: "rgba(0, 0, 0, 0.5)",
},
fontFamily: {
mavis: ["Mavis", "sans"],
sans: ["Roboto", "sans-serif"],
serif: ["Bahnschrift", "serif"],
},
dropShadow: {
'bright': '0 15px 25px rgb(255,255,255)',
},
keyframes: {
fadeIn: {
'0%': { opacity: 0 },
'100%': { opacity: 1 },
},
growDown: {
'0%': {transform: 'scaleY(0)'},
'100%': { transform: "scaleY(1)" },
}
},
animation: {
fadeIn: 'fadeIn 1s ease-out',
growDown: 'growDown 1s ease-out',
},
},
},
},
plugins: [],
}
export default config