chakra-ui---dark-mode-implementation

chakra-ui---dark-mode-implementation is a cursor rule for Cursor from holtwood/awesome-cursorrules-zh. It costs 0 tokens per session (362 once invoked), scanned A, original, MIT.

A Chakra UI rule for adding a light and dark color mode to React components. It covers switching modes, following the system preference, storing the choice, and preventing a flash of the wrong theme during loading.

In plain words
What is it for?
Use it to configure light and dark theme colors, add a mode switcher with useColorMode, and keep contrast accessible in both modes.
Why use it?
It keeps the interface readable across color modes and preserves the user's preference between visits.

Cursor rule for Cursor

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

Good fit Use it to configure light and dark theme colors, add a mode switcher with useColorMode, and keep contrast accessible in both modes.

Compare 6 cursor rules from other repositories ↓
Install with agentmods
npx agentmods add rules/holtwood/awesome-cursorrules-zh/chakra-ui-dark-mode-implementation
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---dark-mode-implementation

README.md
[![agentmods](https://agentmods.dev/badge/rules/holtwood/awesome-cursorrules-zh/chakra-ui-dark-mode-implementation.svg)](https://agentmods.dev/rules/holtwood/awesome-cursorrules-zh/chakra-ui-dark-mode-implementation)
Your own site
<a href="https://agentmods.dev/rules/holtwood/awesome-cursorrules-zh/chakra-ui-dark-mode-implementation"><img src="https://agentmods.dev/badge/rules/holtwood/awesome-cursorrules-zh/chakra-ui-dark-mode-implementation.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 362 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.00362
Opus 5 $0.00000 $0.00181
Sonnet 5 $0.00000 $0.00072
Haiku 4.5 $0.00000 $0.00036

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

Security

Grade A, and why

chakra-ui---dark-mode-implementation 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---dark-mode-implementation.mdc · 27 lines

What it actually says

  • 使用 Chakra UI 的颜色模式实现暗模式
    • 自动颜色模式:利用 Chakra UI 内置的颜色模式(Color Mode)功能,轻松实现亮/暗模式切换,并支持系统偏好设置。
    • useColorMode Hook:在组件中使用 useColorMode Hook 来获取当前颜色模式和切换模式的函数。
    • ColorModeScript:在应用的根部(例如 _document.jsindex.js)引入 ColorModeScript,以防止页面加载时的闪烁问题。
    • 主题配置:在 Chakra UI 主题中定义 colors 对象,为亮/暗模式提供不同的颜色值,确保组件在不同模式下显示正确。
    • 示例
      import { useColorMode, Button, Box } from '@chakra-ui/react';
      
      function ColorModeSwitcher() {
        const { colorMode, toggleColorMode } = useColorMode();
        return (
          <Box>
            <Button onClick={toggleColorMode}>
              Toggle {colorMode === 'light' ? 'Dark' : 'Light'} Mode
            </Button>
          </Box>
        );
      }
      
    • 持久化:Chakra UI 默认会将颜色模式偏好存储在 localStorage 中,确保用户下次访问时保持一致。
    • 可访问性:确保亮/暗模式切换时,颜色对比度仍然满足可访问性标准。
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 · 27 lines · 0 tokens per session scan A 8a53b02df607

Subscribe to this mod's changes

chakra-ui---dark-mode-implementation 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 362 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.