-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathtailwind.config.mjs
More file actions
33 lines (33 loc) · 925 Bytes
/
tailwind.config.mjs
File metadata and controls
33 lines (33 loc) · 925 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
33
/** @type {import('tailwindcss').Config} */
export default {
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
theme: {
extend: {
/* FIXME: this for some reason is not working after upgrading to Tailwind 4 */
/* we have colors defined in global.css */
colors: {
"operately-blue": "#3185FF",
"operately-dark-blue": "#024FAC",
"operately-blue-tint-1": "#E3F2FF",
"operately-blue-tint-2": "#98C9FF",
"edgy-blue": "#0055FF",
},
fontFamily: {
sans: ["Inter var", "ui-sans-serif", "system-ui", "sans-serif"],
serif: ["PT Serif", "ui-serif", "Georgia", "serif"],
},
typography: {
DEFAULT: {
css: {
a: {
color: "#3185FF",
"&:hover": {
color: "#024FAC",
},
},
},
},
},
},
},
};