diff --git a/builtins/en/knowledge/frontend.md b/builtins/en/knowledge/frontend.md
index 8674246..b1781e2 100644
--- a/builtins/en/knowledge/frontend.md
+++ b/builtins/en/knowledge/frontend.md
@@ -224,6 +224,54 @@ Signs to make separate components:
- Added variant is clearly different from original component's purpose
- Props specification becomes complex on the usage side
+### Theme Differences and Design Tokens
+
+When you need different visuals with the same functional components, manage it with design tokens + theme scope.
+
+Principles:
+- Define color, spacing, radius, shadow, and typography as tokens (CSS variables)
+- Apply role/page-specific differences by overriding tokens in a theme scope (e.g. `.consumer-theme`, `.admin-theme`)
+- Do not hardcode hex colors (`#xxxxxx`) in feature components
+- Keep logic differences (API/state) separate from visual differences (tokens)
+
+```css
+/* tokens.css */
+:root {
+ --color-bg-page: #f3f4f6;
+ --color-surface: #ffffff;
+ --color-text-primary: #1f2937;
+ --color-border: #d1d5db;
+ --color-accent: #2563eb;
+}
+
+.consumer-theme {
+ --color-bg-page: #f7f8fa;
+ --color-accent: #4daca1;
+}
+```
+
+```tsx
+// same component, different look by scope
+
+
+
+```
+
+Operational rules:
+- Implement shared UI primitives (Button/Card/Input/Tabs) using tokens only
+- In feature views, use theme-common utility classes (e.g. `surface`, `title`, `chip`) to avoid duplicated styling logic
+- For a new theme, follow: "add tokens -> override by scope -> reuse existing components"
+
+Review checklist:
+- No copy-pasted hardcoded colors/spacings
+- No duplicated components per theme for the same UI behavior
+- No API/state-management changes made solely for visual adjustments
+
+Anti-patterns:
+- Creating `ButtonConsumer`, `ButtonAdmin` for styling only
+- Hardcoding colors in each feature component
+- Changing response shaping logic when only the theme changed
+
## Abstraction Level Evaluation
**Conditional branch bloat detection:**
diff --git a/builtins/ja/knowledge/frontend.md b/builtins/ja/knowledge/frontend.md
index 1860932..621a437 100644
--- a/builtins/ja/knowledge/frontend.md
+++ b/builtins/ja/knowledge/frontend.md
@@ -369,6 +369,54 @@ export function StepperButton(props) {
- 追加したvariantが元のコンポーネントの用途と明らかに違う
- 使う側のprops指定が複雑になる
+### テーマ差分とデザイントークン
+
+同じ機能コンポーネントを再利用しつつ見た目だけ変える場合は、デザイントークン + テーマスコープで管理する。
+
+原則:
+- 色・余白・角丸・影・タイポをトークン(CSS Variables)として定義する
+- 画面/ロール別の差分はテーマスコープ(例: `.consumer-theme`, `.admin-theme`)で上書きする
+- コンポーネント内に16進カラー値(`#xxxxxx`)を直書きしない
+- ロジック差分(API・状態管理)と見た目差分(トークン)を混在させない
+
+```css
+/* tokens.css */
+:root {
+ --color-bg-page: #f3f4f6;
+ --color-surface: #ffffff;
+ --color-text-primary: #1f2937;
+ --color-border: #d1d5db;
+ --color-accent: #2563eb;
+}
+
+.consumer-theme {
+ --color-bg-page: #f7f8fa;
+ --color-accent: #4daca1;
+}
+```
+
+```tsx
+// same component, different look by scope
+