-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
76 lines (70 loc) · 2.29 KB
/
tailwind.config.js
File metadata and controls
76 lines (70 loc) · 2.29 KB
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./app/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
"./utils/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
// Japanese Color Palette
japanese: {
// Whites & Off-whites
gofuniro: "#FFFFFC", // 胡粉色 - Chalk white
hakuji: "#F8FBFB", // 白磁 - White porcelain
unoharairo: "#F7FCFE", // 卯の花色 - Deutzia flower
// Light Grays & Creams
kinairo: "#FBFAF5", // 生成り色 - Dough/natural
shironeri: "#F3F3F2", // 白練 - Silk white kneading
soshoku: "#EAE5E3", // 素色 - Base color
shiraumenezu: "#E5E4E6", // 白梅鼠 - White plum grey
// Grays
shironezu: "#DCDDDD", // 白鼠 - White grey
nyuhakushoku: "#F3F3F3", // 乳白色 - Milky white
// Subtle Accents
murasakisuishiyou: "#E7E7EB", // 紫水晶 - Purple water (amethyst)
// Additional Japanese accent colors
nezumiiro: "#949495", // 鼠色 - Mouse grey
ginnezu: "#91989C", // 銀鼠 - Silver mouse
sumiiro: "#595857", // 墨色 - Ink color
},
// Light mode - using Japanese colors
light: {
bg: "#FBFAF5", // kinairo
text: "#2c353d",
accent: "#595857", // sumiiro - ink color
border: "#E5E4E6", // shiraumenezu
tag: "#F7FCFE", // unoharairo
highlight: "#E7E7EB", // murasakisuishiyou - purple water
},
// Dark mode - Obsidian Minimal inspired (neutral grays)
dark: {
bg: "#1a1a1a",
text: "#d1d1d1",
accent: "#999999",
border: "#333333",
tag: "#242424",
highlight: "#e8e8e8",
},
},
fontFamily: {
serif: ["var(--font-averia)"],
},
keyframes: {
typing: {
"0%": { opacity: 0.3 },
"50%": { opacity: 1 },
"100%": { opacity: 0.3 },
},
},
animation: {
typing: "typing 1.5s infinite",
"typing-middle": "typing 1.5s infinite 0.2s",
"typing-last": "typing 1.5s infinite 0.4s",
},
},
},
plugins: [require("@tailwindcss/typography")],
darkMode: "class",
};