-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.mjs
38 lines (37 loc) · 1.06 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
import defaultTheme from 'tailwindcss/defaultTheme'
import typography from "@tailwindcss/typography"
import aspectRatio from "@tailwindcss/aspect-ratio"
/** @type {import('tailwindcss').Config} */
export default {
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
theme: {
extend: {
fontFamily: {
jost: ["Fredoka", "Adjusted Arial Fallback", ...defaultTheme.fontFamily.sans],
},
colors: {
glow10: "#B0FBBC",
glow20: "#82F9A1",
glow30: "#0ACF83",
text10: "#ECF8FF",
text20: "#C9E2F0",
text30: "#BBC6CC",
blue10: "#111A20",
blue15: "#19252E",
blue20: "#1C2C35",
blue30: "#243B4A",
blue40: "#416883",
blue50: "#5E8CA7",
cyan10: "#1DA1F2",
red10: "#D9534D",
red20: "#EA4C89",
border_light: "rgba(124, 201, 255, 0.41)",
light: "rgba(130, 249, 161, 0.07)",
},
boxShadow: {
emanate: "rgb(14 255 77 / 50%) 3px 0px 22px",
},
},
},
plugins: [aspectRatio, typography],
}