-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
51 lines (51 loc) · 1.36 KB
/
tailwind.config.ts
File metadata and controls
51 lines (51 loc) · 1.36 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
import type { Config } from "tailwindcss";
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
safelist: [
"text-blue-mid-light",
"text-green-mid-light",
"text-yellow-mid-light",
"text-purple-mid-light",
"text-orange-mid-light",
"outline-grey",
],
theme: {
colors: {
blue: "#0065BD",
green: "#2FCF13",
yellow: "#F0D60A",
purple: "#8E00C7",
orange: "#FD7024",
white: "#ffffff",
black: "#000000",
grey: "#858585",
"blue-light": "#ECF6FF",
"green-light": "#E9FFE5",
"yellow-light": "#FFFBDF",
"purple-light": "#FAECFF",
"orange-light": "#FFDFCD",
"grey-light": "#DDDDDD",
"blue-dark": "#002341",
"green-dark": "#10280C",
"yellow-dark": "#423A00",
"purple-dark": "#250033",
"orange-dark": "#381A00",
"grey-dark": "#454545",
"blue-mid-light": "#A3D4FF",
"green-mid-light": "#A5FF95",
"yellow-mid-light": "#FFF184",
"purple-mid-light": "#EFC2FF",
"orange-mid-light": "#FFB38A",
"blue-mid-dark": "#003B6F",
"green-mid-dark": "#127900",
"yellow-mid-dark": "#9E8D06",
"purple-mid-dark": "#560077",
"orange-mid-dark": "#852E00",
},
fontFamily: {
sans: ["inter", "Arial", "sans-serif"],
},
extend: {},
},
plugins: [],
} satisfies Config;