-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.ts
50 lines (49 loc) · 1.36 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
import type { Config } from "tailwindcss";
export default {
mode: "jit",
content: [
"./index.html",
"./app/**/*.{js,ts,jsx,tsx,}",
"assets/fonts/.**.ttf",
],
theme: {
extend: {
gridTemplateColumns: {
// Simple 16 column grid
"24": "repeat(24, minmax(0, 1fr))",
"20": "repeat(20, minmax(0, 1fr))",
"16": "repeat(16, minmax(0, 1fr))",
"15": "repeat(15, minmax(0, 1fr))",
"18": "repeat(18, minmax(0, 1fr))",
},
gridColumn: {
// Custom column spans
"span-16": "span 16 / span 16",
"span-20": "span 20 / span 20",
"span-24": "span 24 / span 24",
"span-15": "span 15 / span 15",
"span-18": "span 18 / span 18",
},
// prettier-ignore
fontFamily: {
'nunito': ['"Nunito"', 'sans-serif'],
'overlock': ['"Overlock"', 'sans-serif'],
'roboto': ['"Roboto Serif"', 'serif'],
'lato': ['"Lato"', 'sans-serif'],
'karla': ['"Karla"', 'sans-serif'],
'lora': ['"Lora"', 'serif'],
},
colors: {
defaultblue: "#09427d",
defaultgreen: "#79fac5",
"default-light-sky-blue": "rgb(73, 160, 214)",
"default-sky-blue": "#2b6ab3",
"start-btn-green": "#4db538",
},
},
},
plugins: [
// ...
require("tailwind-scrollbar"),
],
} satisfies Config;