-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.mjs
33 lines (31 loc) · 941 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
/** @type {import('tailwindcss').Config} */
import defaultTheme from "tailwindcss/defaultTheme";
export default {
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
theme: {
extend: {
colors: {
primary: "#29c785",
canvas: "#1f1f1f",
card: "#282828",
// "primary-color": "#29c785",
// "secondary-color": "#29c785",
// "background-color": "#222222",
// "background-color-opaque": "#222222ee",
// "canvas-color": "#222222",
// "color-on-primary": "#232729",
// "color-on-secondary": "#ffffff",
// "color-on-background": "#ffffff",
// "color-on-canvas": "#ffffff",
},
screens: {
hbp: "480px",
},
fontFamily: {
primary: ["Montserrat", ...defaultTheme.fontFamily.sans],
secondary: ["Work Sans", ...defaultTheme.fontFamily.sans],
},
},
},
plugins: [],
};