-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
60 lines (60 loc) · 1.55 KB
/
tailwind.config.js
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
52
53
54
55
56
57
58
59
60
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./src/**/*.{astro,js,jsx,ts,tsx,vue}",
"./index.html"
],
theme: {
extend: {
colors: {
// ----------------------------------------------------------------
// generated from https://javisperez.github.io/tailwindcolorshades/?primary=94bade&secondary=476e8f&tertiary=d95d51
primary: {
50: '#F7FBFC',
100: '#F5FAFC',
200: '#E4F1F7',
300: '#D3E8F2',
400: '#B3D2E8',
500: '#94bade',
600: '#779EC7',
700: '#5378A6',
800: '#355685',
900: '#1E3763',
950: '#0C1D40',
},
secondary: {
50: '#F5F9FA',
100: '#E9F2F5',
200: '#C8DBE3',
300: '#A7C4D1',
400: '#7298B0',
500: '#476e8f',
600: '#395E80',
700: '#28486B',
800: '#1A3457',
900: '#0E2240',
950: '#061229',
},
tertiary: {
50: '#FCF9F5',
100: '#FCF5ED',
200: '#F5DFCE',
300: '#F0CAB4',
400: '#E69681',
500: '#d95d51',
600: '#C44C41',
700: '#A3362E',
800: '#82231D',
900: '#611610',
950: '#400A07',
},
// ----------------------------------------------------------------
},
fontFamily: {
'sans-serif': ['"Noto Serif SC"', 'sans-serif'],
'sans': ['"Noto Sans SC Variable"', 'sans'],
}
},
},
plugins: [],
}