-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
39 lines (38 loc) · 969 Bytes
/
tailwind.config.ts
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
import type { Config } from "tailwindcss";
import defaultTheme from "tailwindcss/defaultTheme";
export default <Partial<Config>>{
content: [
"./app.vue",
"./components/**/*.vue",
"./layouts/**/*.vue",
"./pages/**/*.vue",
"docs/content/**/*.md",
],
theme: {
extend: {
colors: {
blueScriptBlue: {
"50": "#ebf5ff",
"100": "#daecff",
"200": "#bddbff",
"300": "#95c1ff",
"400": "#6b9cff",
"500": "#4876ff",
"600": "#284dff",
"700": "#1d3ce5",
"800": "#1a34b9",
"900": "#192b77", // Base
"950": "#121d54",
},
},
gridTemplateColumns: {
"16": "repeat(16, minmax(0, 1fr))",
"20": "repeat(20, minmax(0, 1fr))",
},
},
fontFamily: {
sans: ["Interop", ...defaultTheme.fontFamily.sans],
// serif: ["Nanum Myeongjo", ...defaultTheme.fontFamily.serif],
},
},
};