-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.mjs
38 lines (37 loc) · 1.02 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'
/** @type {import('tailwindcss').Config} */
export default {
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
theme: {
extend: {
colors: {
"primary-darkest": "#11283C",
"primary-dark": "#1A3C5B",
"primary-default": "#225079",
"primary-light": "#91A7BC",
"primary-lighter": "#C8D3DD",
"secondary-default": "#AECC53",
"secondary-lightest": "#FBFCF6",
"gray-darkest": "#111827",
"subscribe-card-color": "#0F2436",
"subscribe-input-color": "#132D43",
"btn-hover": "#C8EB5D",
},
letterSpacing: {
tightest: "-.075em",
tighter: "-.05em",
tight: "-.025em",
normal: "0",
wide: ".025em",
wider: ".05em",
widest: "0.135em",
semigap: "0.175em",
gap: "0.43em",
},
fontFamily: {
sans: ['Nunito Sans', ...defaultTheme.fontFamily.sans],
},
},
},
plugins: [],
};