-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtwind.config.ts
50 lines (49 loc) · 1.19 KB
/
twind.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 { Options } from "$fresh/plugins/twind.ts"
import * as colors from "twind/colors"
export default {
selfURL: import.meta.url,
// preflight: {
// "@import":
// "url(https://fonts.googleapis.com/css2?family=Cormorant:ital@1&family=Kolker+Brush&display=swap)",
// "@font-face": [
// {
// fontFamily: "Kolker Brush",
// },
// { fontFamily: "Cormorant", fontWeight: "italic" },
// ],
// },
theme: {
extend: {
transitionDuration: {
"0": "0ms",
"1600": "1600ms",
"2000": "2000ms",
},
},
// fontFamily: {
// "brush": [
// '"Kolker Brush"',
// "Segoe Print",
// "Bradley Hand",
// "Chilanka",
// "TSCu_Comic",
// "casual",
// "cursive",
// ],
// "express": ['"Cormorant"', "serif"],
// },
colors: {
purple: "#271f3f",
green: "#59a188",
red: "rgb(255,25,25)",
blue: "#84b3ea",
indigo: "rgb(0,153,212)",
violet: "rgb(108, 73, 136)",
grey: colors.coolGray,
dark: "rgb(15,15,15)",
backdrop: "rgba(15,15,15,0.6)",
white: colors.white,
black: colors.black,
},
},
} as Options