-
Notifications
You must be signed in to change notification settings - Fork 5
/
tailwind.config.js
45 lines (43 loc) · 1019 Bytes
/
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
import { fontFamily } from "tailwindcss/defaultTheme";
/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
fontFamily: {
sans: ["JetBrains Mono", "sans-serif", ...fontFamily.sans],
},
extend: {
screens: {
tall: { raw: "(min-height: 800px)" },
},
animation: {
fade: "fadeIn .25s ease-in-out",
},
keyframes: {
fadeIn: {
from: { opacity: "0" },
to: { opacity: "1" },
},
},
},
colors: {
inherit: "inherit",
transparent: "transparent",
current: "currentColor",
black: "rgb(0 0 0)",
white: "rgb(255 255 255)",
["lavender-blue"]: {
50: "#f2f3ff",
100: "#e4e7ff",
200: "#c9cfff",
300: "#aeb8ff",
400: "#93a0ff",
500: "#7888ff",
600: "#606dcc",
700: "#485299",
800: "#303666",
900: "#181b33",
},
},
},
};