-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.ts
38 lines (37 loc) · 962 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
import type { Config } from "tailwindcss";
import { fontFamily } from "tailwindcss/defaultTheme";
export default {
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
screens: {
"550px": "550px",
md: "800px",
},
colors: {
background: "var(--background)",
foreground: "var(--foreground)",
black: "#1C1C1C",
"tokamak-blue": "#0078FF",
"tokamak-black": "#1C1C1C",
},
fontFamily: {
sans: ["Proxima Nova", ...fontFamily.sans],
},
animation: {
"infinite-scroll": "infinite-scroll 15s linear infinite",
},
keyframes: {
"infinite-scroll": {
"0%": { transform: "translateX(0)" },
"100%": { transform: "translateX(-50%)" },
},
},
},
},
plugins: [],
} satisfies Config;