forked from astral-sh/ruff
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.cjs
78 lines (77 loc) · 1.89 KB
/
tailwind.config.cjs
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
/** @type {import('tailwindcss').Config} */
const defaultTheme = require("tailwindcss/defaultTheme");
module.exports = {
darkMode: "class",
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
colors: {
"ayu-accent": "#ffac2f",
"ayu-background": {
DEFAULT: "#f8f9fa",
dark: "#0b0e14",
},
black: "#261230",
white: "#FFFFFF",
radiate: "#D7FF64",
flare: "#6340AC",
rock: "#78876E",
galaxy: "#261230",
space: "#30173D",
comet: "#6F5D6F",
cosmic: "#DE5FE9",
sun: "#FFAC2F",
electron: "#46EBE1",
aurora: "#46EB74",
constellation: "#5F6DE9",
neutron: "#CFF3CF",
proton: "#F6AFBC",
nebula: "#CDCBFB",
supernova: "#F1AFF6",
starlight: "#F4F4F1",
lunar: "#FBF2FC",
asteroid: "#E3CEE3",
crater: "#F0DFDF",
},
fontFamily: {
heading: [
"Alliance Platt",
"system-ui",
"-apple-system",
"Segoe UI",
"Roboto",
"Helvetica",
"Arial",
"monospace",
"Apple Color Emoji",
"Segoe UI Emoji",
],
body: [
"Alliance Text",
"system-ui",
"-apple-system",
"Segoe UI",
"Roboto",
"Helvetica",
"Arial",
"sans-serif",
"Apple Color Emoji",
"Segoe UI Emoji",
],
mono: ["Roboto Mono"],
},
fontSize: {
xs: "0.75rem" /* 12px */,
sm: "0.875rem" /* 14px */,
base: "1rem" /* 16px */,
lg: "1.125rem" /* 18px */,
xl: "1.25rem" /* 20px */,
"2xl": "1.5rem" /* 25px */,
"3xl": "1.875rem" /* 30px */,
"4xl": "2.25rem" /* 36px */,
"5xl": "3rem" /* 48px */,
},
},
},
plugins: [],
};