-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.mjs
34 lines (32 loc) · 938 Bytes
/
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
/** @type {import('tailwindcss').Config} */
const defaultTheme = require("tailwindcss/defaultTheme");
export default {
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
theme: {
extend: {
fontFamily: {
sans: ["DM Sans", "Inter", ...defaultTheme.fontFamily.sans],
},
colors: {
"generic-red": "#fa6f5a",
"generic-orange": "#faa55a",
"generic-yellow": "#fadd5a",
"generic-green": "#9dfa5a",
"generic-blue": "#5a95fa",
"generic-purple": "#ba5afa",
"generic-rose": "#fa5a87",
"brand-colour": "#28cbd4",
"brand-background": "#16181c",
"brand-background-secondary": "#262a31",
"brand-background-blue": "#041d30",
"brand-background-transparent": "#262a31bf",
"brand-scrollbar": "#041d30",
"brand-border": "#21292c",
"brand-border-alt": "#d7c8ff",
"brand-text": "#ffffff",
"brand-text-secondary": "#e1e1e1",
},
},
},
plugins: [],
};