Token导航 LogoToken导航TokenDH.com
前端设计只读github未标认证来源可访问许可证需确认审计通过

storefront-theming店面主题

Agent Skill

storefront-theming 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

461

周安装

19

GitHub Stars

19

下载量

150
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:storefront-theming(店面主题)
来源仓库:https://github.com/finsilabs/awesome-ecommerce-skills
仓库路径:skills/storefront-theming
安装命令:
npx skills add https://github.com/finsilabs/awesome-ecommerce-skills --skill storefront-theming
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/finsilabs/awesome-ecommerce-skills --skill storefront-theming

简介

storefront-theming 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息。

  • 它适合在 Codex、Claude、Cursor、Gemini CLI 中围绕仓库状态、代码变更或协作事项进行整理时使用。
  • 可结合来源仓库、安装命令和原始 README 继续核验具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 安装命令:npx skills add https://github.com/finsilabs/awesome-ecommerce-skills --skill storefront-theming

SKILL.md

Storefront Theming

Overview

Architect a theming system using design tokens and CSS custom properties that allows a storefront to be re-skinned for multiple brands without modifying component code. Covers the token taxonomy (color, typography, spacing, radius), runtime theme switching for dark mode, and white-label multi-tenant architecture where each tenant supplies their own token overrides.

When to Use This Skill

  • When building a platform that will power multiple branded storefronts from a single codebase
  • When implementing dark mode for a storefront
  • When a rebrand requires changing colors across thousands of component instances without hunt-and-replace
  • When handing off a design system to a team that needs to maintain brand consistency

Core Instructions

Step 1: Determine the merchant's platform and choose the right approach

PlatformRecommended ApproachWhy
ShopifyUse the Theme Editor's Color scheme system + edit config/settings_schema.json and assets/base.css to add custom CSS variablesShopify OS2.0 themes expose all brand colors, fonts, and border radii as Theme Editor settings that write to CSS variables automatically; no build step required
WooCommerceUse the WordPress Global Styles system (WordPress 5.9+) with a block theme, or configure CSS variables in Appearance → Customize → Additional CSS for classic themesBlock themes using theme.json support a full design token system natively; classic themes need CSS custom properties added manually
BigCommerceConfigure theme settings in Storefront → My Themes → Customize — Cornerstone exposes colors, fonts, and spacing as Theme Editor variables; advanced customization via config.json and SCSSCornerstone compiles SCSS with Handlebars template variables; custom CSS variables can be added to the global stylesheet
Custom / HeadlessBuild a three-tier token system (global → semantic → component) using CSS custom properties, compiled from JSON using Style DictionaryFull control over token taxonomy, dark mode, and multi-tenant overrides; see implementation below

Step 2: Configure theming on your platform


Shopify

Using the Theme Editor color system (no code required):

  1. Go to Online Store → Themes → Customize
  2. Click Theme settings (paint bucket icon) in the left panel
  3. Under Colors, configure your brand's:

- Primary, secondary, and accent colors - Background colors - Text colors - Button colors and text

  1. Under Typography, set your font families and sizes
  2. Under Buttons and inputs, configure border radius for buttons and form fields
  3. All changes write to CSS custom properties that every component in the theme uses — no component-level changes needed

Adding custom CSS variables (for developers extending the theme):

  1. Go to Online Store → Themes → Edit code
  2. Open assets/base.css (Dawn) or equivalent
  3. Add your custom variables to the :root block, referencing the theme's settings variables:
:root {
  --color-button: {{ settings.color_button.red }}, {{ settings.color_button.green }}, {{ settings.color_button.blue }};
  --font-body-family: {{ settings.type_body_font.family }}, sans-serif;
}
  1. In your section/component Liquid files, use var(--color-button) to reference the merchant-controlled setting

WooCommerce

Block themes with theme.json (WordPress 5.9+):

If you're building a new store with a block theme (like Storefront Blocks or a custom block theme):

  1. Open theme.json in your theme root
  2. Add your design tokens to the settings.color.palette and settings.typography sections:
{
  "settings": {
    "color": {
      "palette": [
        { "slug": "brand-primary", "color": "#2563eb", "name": "Brand Primary" },
        { "slug": "brand-secondary", "color": "#3b82f6", "name": "Brand Secondary" }
      ]
    },
    "custom": {
      "spacing": { "xs": "0.5rem", "sm": "1rem", "md": "1.5rem" }
    }
  }
}
  1. WordPress automatically exposes these in the Global Styles panel and generates CSS custom properties like --wp--preset--color--brand-primary

Classic themes — CSS variables in Additional CSS:

  1. Go to Appearance → Customize → Additional CSS
  2. Define your brand variables:
:root {
  --color-primary: #2563eb;
  --color-price-sale: #dc2626;
  --font-size-base: 1rem;
  --border-radius-button: 0.375rem;
}
  1. Use these variables in your child theme's CSS instead of hard-coded values

BigCommerce

Cornerstone theme variables (SCSS-based):

  1. Go to Storefront → My Themes → Edit Theme Files (requires a copy of the theme)
  2. Open assets/scss/settings/global/ — Cornerstone organizes variables by category (color, typography, spacing)
  3. Modify _color.scss to update the brand color palette
  4. Open config.json in the theme root — this maps Theme Editor controls to SCSS variables:
{
  "settings": {
    "color-primary": "#2563eb",
    "font-size-root": "16px",
    "button-radius": "4px"
  }
}
  1. In Storefront → My Themes → Customize, the Theme Editor reflects these settings for merchant configuration

Custom / Headless

Three-tier CSS custom properties system:

/* 1. Global tokens — the complete palette (never used directly in components) */
:root {
  --blue-600: #2563eb;
  --blue-500: #3b82f6;
  --red-500: #ef4444;
  --green-600: #16a34a;
  --gray-50: #f8fafc;
  --gray-900: #0f172a;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --radius-md: 0.375rem;
}

/* 2. Semantic tokens — meaningful aliases (components consume these) */
:root {
  --color-brand-primary: var(--blue-600);
  --color-brand-secondary: var(--blue-500);
  --color-surface: var(--gray-50);
  --color-on-surface: var(--gray-900);
  --color-price: var(--gray-900);
  --color-price-sale: var(--red-500);
  --color-success: var(--green-600);
}

/* 3. Dark mode overrides */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --color-surface: var(--gray-900);
    --color-on-surface: var(--gray-50);
  }
}
[data-theme="dark"] {
  --color-surface: var(--gray-900);
  --color-on-surface: var(--gray-50);
}

/* Components only use semantic tokens */
.btn-primary {
  background: var(--color-brand-primary);
  border-radius: var(--radius-md);
  min-height: 44px;
}
.price--sale { color: var(--color-price-sale); }

Dark mode toggle (stores preference in localStorage):

export function ThemeToggle() {
  const [theme, setTheme] = useState(() => localStorage.getItem('theme') ?? 'system');

  function applyTheme(newTheme) {
    setTheme(newTheme);
    localStorage.setItem('theme', newTheme);
    if (newTheme === 'system') document.documentElement.removeAttribute('data-theme');
    else document.documentElement.setAttribute('data-theme', newTheme);
  }

  return (
    <button onClick={() => applyTheme(theme === 'dark' ? 'light' : 'dark')}
      aria-label={`Switch to ${theme === 'dark' ? 'light' : 'dark'} mode`}>
      {theme === 'dark' ? 'Light mode' : 'Dark mode'}
    </button>
  );
}

Prevent dark mode flash (apply before render):

<!-- In <head>, before any stylesheets -->
<script>
  (function() {
    var theme = localStorage.getItem('theme');
    if (theme === 'dark' || (!theme && matchMedia('(prefers-color-scheme: dark)').matches))
      document.documentElement.setAttribute('data-theme', 'dark');
  })();
</script>

Multi-tenant white-label (inject per-tenant overrides server-side):

// In your server response, inject tenant CSS overrides in <head>
// so they're applied before the page renders (no flash)
const tenantTheme = await getTenantTheme(req.hostname);
const cssOverrides = tenantTheme
  ? `:root { ${Object.entries(tenantTheme)
      .map(([k, v]) => `--${k}: ${sanitizeCssValue(v)};`)
      .join(' ')} }`
  : '';

// Sanitize to allow only safe CSS value patterns
function sanitizeCssValue(value) {
  if (/^#[0-9a-fA-F]{3,8}$/.test(value)) return value; // hex color
  if (/^\d+(\.\d+)?(px|rem|em|%)$/.test(value)) return value; // length
  if (/^[a-zA-Z0-9\s,'"]+$/.test(value)) return value; // font names
  return ''; // reject everything else (prevents CSS injection)
}

Step 3: Build a token reference for your team

Regardless of platform, document your tokens so designers and developers stay in sync:

  • Shopify: The Theme Editor serves as the live token reference — share the Customize URL with your design team
  • WooCommerce: Document the CSS variable names in a Storybook instance or a simple HTML reference page
  • BigCommerce: Cornerstone's config.json documents available settings; add comments to SCSS files
  • Custom: Use Style Dictionary to generate a static token documentation page, or document in Storybook

Best Practices

  • Never hard-code colors in component CSS — always use semantic tokens; a rebrand that requires global find-replace of #2563eb is avoidable
  • Keep semantic token names meaning-based--color-brand-primary not --color-blue-600; the hex value will change but the meaning stays
  • Test dark mode with real devices — macOS/iOS and Windows have different default dark mode behaviors; test both
  • Validate contrast ratios — after setting brand colors, verify WCAG contrast ratios (4.5:1 for body text) using WebAIM Contrast Checker
  • Sanitize white-label CSS injections — only allow hex colors, rem/px lengths, and font names; reject arbitrary strings to prevent CSS injection attacks

Common Pitfalls

ProblemSolution
Dark mode causes flash of unstyled contentApply data-theme attribute synchronously in a <head> script before stylesheets load
Tenant theme overrides not applied on first renderInject tenant CSS as inline <style> tag server-side; do not apply in useEffect
Design tokens out of sync between Figma and codeUse Tokens Studio for Figma plugin to export directly to your CSS variable / theme.json files
White-label CSS enables XSSSanitize tenant token values to only allow valid CSS color, length, and font-family patterns
Rebranding requires changing many filesIf you find yourself replacing colors in multiple component files, you skipped the semantic token layer — refactor to semantic tokens first

Related Skills

  • @responsive-storefront
  • @accessibility-commerce
  • @mega-menu-builder
  • @product-page-design

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

35.91%
按下载量换算54

Claude

28.17%
按下载量换算42

Cursor

21.36%
按下载量换算32

Gemini CLI

9.28%
按下载量换算14

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills