chakra-ui---theme-directory-rules

chakra-ui---theme-directory-rules is a cursor rule for Cursor from holtwood/awesome-cursorrules-zh. It costs 0 tokens per session (465 once invoked), scanned A, original, MIT.

Rules for organizing a Chakra UI theme into an entry file, foundational settings, and component-specific styles. The theme controls shared colors, fonts, spacing, breakpoints, and component variants.

In plain words
What is it for?
Use it when creating or extending a Chakra UI theme, adding design foundations, or defining custom styles and variants for individual components.
Why use it?
It keeps styling decisions in predictable, separate files instead of one growing configuration. This makes brand changes and component style updates easier to maintain.

Cursor rule for Cursor

Written for Cursor: a Cursor rule (.mdc).

Good fit Use it when creating or extending a Chakra UI theme, adding design foundations, or defining custom styles and variants for individual components.

Compare 6 cursor rules from other repositories ↓
Install with agentmods
npx agentmods add rules/holtwood/awesome-cursorrules-zh/chakra-ui-theme-directory-rules
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Clone the repo
git clone --depth 1 https://github.com/holtwood/awesome-cursorrules-zh

Made for: Cursor.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for chakra-ui---theme-directory-rules

README.md
[![agentmods](https://agentmods.dev/badge/rules/holtwood/awesome-cursorrules-zh/chakra-ui-theme-directory-rules.svg)](https://agentmods.dev/rules/holtwood/awesome-cursorrules-zh/chakra-ui-theme-directory-rules)
Your own site
<a href="https://agentmods.dev/rules/holtwood/awesome-cursorrules-zh/chakra-ui-theme-directory-rules"><img src="https://agentmods.dev/badge/rules/holtwood/awesome-cursorrules-zh/chakra-ui-theme-directory-rules.svg" alt="Measured on agentmods" height="20"></a>
Per session 0 Nothing until a file matches its globs; then the whole rule loads.
When invoked 465 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00000 $0.00465
Opus 5 $0.00000 $0.00233
Sonnet 5 $0.00000 $0.00093
Haiku 4.5 $0.00000 $0.00047

Measured 4d ago against content hash 25f19bb1c874, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

chakra-ui---theme-directory-rules scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 4d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

docs/rules/frontend/react/chakra-ui/chakra-ui---theme-directory-rules.mdc · 55 lines

What it actually says

  • 主题目录的特定规则,用于管理和自定义 Chakra UI 主题
    • 创建 theme/index.js 来导出主题
      • 所有的主题配置都应集中在 theme/index.js 文件中,并从这里导出最终的主题对象。
      • 示例:
        // theme/index.js
        import { extendTheme } from '@chakra-ui/react';
        import { colors } from './foundations/colors';
        import { Button } from './components/Button';
        
        const theme = extendTheme({
          colors,
          components: {
            Button,
          },
        });
        
        export default theme;
        
    • 将主题基础放在 theme/foundations/
      • 基础主题设置,如颜色(colors.js)、字体(fonts.js)、间距(space.js)等,应组织在 theme/foundations/ 目录下。
      • 示例:
        // theme/foundations/colors.js
        export const colors = {
          brand: {
            900: '#1a365d',
            800: '#153e75',
            700: '#2a69ac',
          },
        };
        
    • 将组件特定的主题覆盖放在 theme/components/
      • 对特定 Chakra UI 组件的样式覆盖和变体定义,应组织在 theme/components/ 目录下,每个组件一个文件。
      • 示例:
        // theme/components/Button.js
        export const Button = {
          baseStyle: {
            fontWeight: 'bold',
          },
          variants: {
            solid: (props) => ({
              bg: props.colorMode === 'dark' ? 'brand.700' : 'brand.500',
              color: 'white',
            }),
          },
        };
        
    • 模块化和可维护性:这种结构有助于保持主题配置的模块化、可读性和可维护性,特别是在大型项目中。
Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 4d ago First seen · 55 lines · 0 tokens per session scan A 25f19bb1c874

Subscribe to this mod's changes

chakra-ui---theme-directory-rules is a cursor rule published in the GitHub repository holtwood/awesome-cursorrules-zh (232 stars, last pushed 1mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 465 tokens. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.