-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathtailwind.config.mjs
86 lines (83 loc) · 2.1 KB
/
tailwind.config.mjs
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
import colors from 'tailwindcss/colors';
import starlightPlugin from '@astrojs/starlight-tailwind';
import starlightPlugin from '@astrojs/starlight-tailwind';
// Generated color palettes
const gray = {
100: "#F5F5F5",
200: "#EBEBEB",
300: "#C9C9C9",
400: "#ABABAB",
500: "#878787",
600: "#636363",
700: "#4D4D4D",
800: "#2B2B2B",
900: "#0F0F0F",
};
/** @type {import('tailwindcss').Config} */
export default {
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
theme: {
extend: {
colors: {
kinde: {
amber: {
100: "#FFF4DB",
900: "#95680E"
},
blue: {
100: "#EBF2FF",
900: "#002D80"
},
grey: {
50: "#F5F5F5",
100: "#EBEBEB",
200: "#DBDBDB",
300: "#C9C9C9",
400: "#ABABAB",
500: "#878787",
600: "#636363",
700: "#4D4D4D",
800: "#2B2B2B",
900: "#0F0F0F"
},
purple: {
100: "#F4E5FF",
500: "#903DD1"
},
red: {
100: "#FFEBEB",
900: "#800000"
}
},
// Your preferred accent color. Indigo is closest to Starlight’s defaults.
accent: colors.black,
// Your preferred gray scale. Zinc is closest to Starlight’s defaults.
gray: gray
},
fontFamily: {
// Your preferred text font. Starlight uses a system font stack by default.
sans: ['"Inter"']
},
boxShadow: {
"elevation-3":
"0 -.25rem .75rem #1214170d,0 .9375rem 1.5rem #12141712,0 .375rem .75rem #1214170f",
"elevation-4":
"0 .1875rem .375rem #12141714,0 .625rem 1.25rem #12141714,0 -.1875rem .75rem #1214170a"
},
keyframes: {
fadeIn: {
"0%": {
opacity: 0.000000001
},
"100%": {
opacity: 1
}
}
},
animation: {
"fade-in": "fadeIn 0.5s ease 0s forwards"
}
}
},
plugins: [starlightPlugin()]
};