بنقرة واحدة
design-system
Guidelines for using global design tokens and styling best practices in the HotWax theme.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Guidelines for using global design tokens and styling best practices in the HotWax theme.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Expert instructions for managing HubSpot CMS resources within the HotWax theme.
Guidelines for documentation standards, repository health, and PR management.
Specialized instructions for QA automation and site reliability using Playwright.
| name | design-system |
| description | Guidelines for using global design tokens and styling best practices in the HotWax theme. |
This skill ensures all styling and CSS implementation follow the HotWax theme's global design tokens and layout principles.
When writing CSS, always use the following CSS variables defined in _variables.css instead of hardcoded values.
Use these for margins, padding, and gaps:
--spacer-xs: Extra small spacing--spacer-sm: Small spacing--spacer-md: Medium (Standard) spacing--spacer-lg: Large spacing--spacer-xl: Extra large spacing--color-primary: Main theme color--color-secondary: Secondary action color--color-tertiary: Accent color--color-text-body: Standard text color--color-text-title: Heading and title color--font-family-body: Standard body text--font-family-special: For headings or special accents--font-weight-light (300)--font-weight-regular (400)--font-weight-medium (500)--font-weight-semibold (600)--font-weight-bold (700)--font-size-xs--font-size-sm--font-size-md--font-size-lg--font-size-xl--page-max-width: Use for container max-width to maintain consistency across the site.px, rem, or hex codes directly in component CSS if a corresponding design token exists.--spacer-md) for related elements to maintain a rhythmic layout.--m-shadow for cards and modals to match the project's elevation style..my-custom-component {
padding: var(--spacer-md);
margin-bottom: var(--spacer-lg);
color: var(--color-text-body);
font-family: var(--font-family-body);
font-weight: var(--font-weight-medium);
box-shadow: var(--m-shadow);
}