-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
32 lines (31 loc) · 826 Bytes
/
tailwind.config.js
File metadata and controls
32 lines (31 loc) · 826 Bytes
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
const defaultTheme = require("tailwindcss/defaultTheme");
/** @type {import('tailwindcss').Config} */
export default {
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
theme: {
extend: {
colors: {
white: "#FFFFFF",
blackPearl: "#070724",
brightGray: "#38384F",
waterloo: "#838391",
pelorous: "#419EBB",
tulipTree: "#EDA249",
purpleHeart: "#6F2ED6",
valencia: "#D14C32",
darkValencia: "#D83A34",
piper: "#CD5120",
java: "#1EC2A4",
royalBlue: "#2D68F0",
tacao: "#ECAD7A",
goldenrod: "#FCCB6B",
foam: "#DEF4FC",
hurricane: "#8E8585",
},
fontFamily: {
antonio: ["antonio", ...defaultTheme.fontFamily.sans],
},
},
},
plugins: [],
};