$npx -y skills add ihlamury/design-skills --skill convertkitConvertkit's UI design system. Use when building interfaces inspired by Convertkit's aesthetic - light mode, Inter font, 4px grid.
| 1 | # Convertkit UI Skills |
| 2 | |
| 3 | Opinionated constraints for building Convertkit-style interfaces with AI agents. |
| 4 | |
| 5 | ## When to Apply |
| 6 | |
| 7 | Reference these guidelines when: |
| 8 | - Building light-mode interfaces |
| 9 | - Creating Convertkit-inspired design systems |
| 10 | - Implementing UIs with Inter font and 4px grid |
| 11 | |
| 12 | ## Colors |
| 13 | |
| 14 | - SHOULD use light backgrounds for primary surfaces |
| 15 | - MUST use `#FFFFFF` as page background (`surface-base`) |
| 16 | - MUST use `#194775` for primary actions and focus states (`accent`) |
| 17 | - SHOULD reduce color palette (currently 18 colors detected) |
| 18 | - MUST maintain text contrast ratio of at least 4.5:1 for accessibility |
| 19 | |
| 20 | ### Semantic Tokens |
| 21 | |
| 22 | | Token | HEX | RGB | Usage | |
| 23 | |-------|-----|-----|-------| |
| 24 | | `surface-base` | #FFFFFF | rgb(255,255,255) | Page background | |
| 25 | | `surface-raised` | #EEE9E4 | rgb(238,233,228) | Cards, modals, raised surfaces | |
| 26 | | `surface-overlay` | #379EFD | rgb(55,158,253) | Overlays, tooltips, dropdowns | |
| 27 | | `text-primary` | #6C6C6C | rgb(108,108,108) | Headings, body text | |
| 28 | | `text-secondary` | #8C8B91 | rgb(140,139,145) | Secondary, muted text | |
| 29 | | `text-tertiary` | #4B4855 | rgb(75,72,85) | Additional text | |
| 30 | | `border-default` | #EFFEFE | rgb(239,254,254) | Subtle borders, dividers | |
| 31 | | `accent` | #194775 | rgb(25,71,117) | Primary actions, links, focus | |
| 32 | |
| 33 | ## Typography |
| 34 | |
| 35 | - MUST use `Inter` as primary font family |
| 36 | - SHOULD use single font family for consistency |
| 37 | - MUST use `75px` / `700` for primary headings |
| 38 | - MUST use `29px` / `semi_bold` for body text |
| 39 | - SHOULD reduce font weights (currently 5 detected) |
| 40 | - MUST use `text-balance` for headings and `text-pretty` for body text |
| 41 | - SHOULD use `tabular-nums` for numeric data |
| 42 | - NEVER modify letter-spacing unless explicitly requested |
| 43 | |
| 44 | ### Text Styles |
| 45 | |
| 46 | | Style | Font | Size | Weight | Color | Count | |
| 47 | |-------|------|------|--------|-------|-------| |
| 48 | | `heading-1` | Inter | 75px | 700 | #242221 | 1 | |
| 49 | | `body` | Inter | 29px | semi_bold | #4B4855 | 1 | |
| 50 | | `text-24px` | Inter | 24px | 700 | #292929 | 1 | |
| 51 | | `text-17px` | Inter | 17px | 400 | #6D6864 | 1 | |
| 52 | | `text-16px` | Inter | 16px | 400 | #66625E | 1 | |
| 53 | | `text-15px` | Inter | 15px | 400 | #9DA1A5 | 1 | |
| 54 | | `text-15px` | Inter | 15px | 500 | #CED2D4 | 1 | |
| 55 | | `text-15px` | Inter | 15px | 500 | #4A4744 | 1 | |
| 56 | | `text-15px` | Inter | 15px | 500 | #4D4A47 | 1 | |
| 57 | | `text-14px` | Inter | 14px | 400 | #8C8B91 | 1 | |
| 58 | |
| 59 | ### Typography Reference |
| 60 | |
| 61 | **Font Families:** |
| 62 | - `Inter` (used 35x) |
| 63 | |
| 64 | **Font Sizes:** 11px, 12px, 13px, 14px, 15px, 16px, 17px, 24px, 29px, 75px |
| 65 | |
| 66 | ## Spacing |
| 67 | |
| 68 | - MUST use 4px grid for spacing |
| 69 | - SHOULD use spacing from scale: 1px, 2px, 3px, 4px, 5px, 6px, 7px, 8px |
| 70 | - SHOULD use 5px as default gap between elements |
| 71 | - NEVER use arbitrary spacing values (use design scale) |
| 72 | - SHOULD maintain consistent padding within containers |
| 73 | |
| 74 | ## Borders |
| 75 | |
| 76 | - MUST use border-radius from scale: 3px, 4px, 6px, 7px, 9px, 10px |
| 77 | - SHOULD limit border widths to: 1px, 2px |
| 78 | - SHOULD use 7px as default border-radius |
| 79 | - NEVER use arbitrary border-radius values (use design scale) |
| 80 | - SHOULD use subtle borders (1px) for element separation |
| 81 | |
| 82 | ### Border Radius Reference |
| 83 | |
| 84 | **Scale:** 3px, 4px, 6px, 7px, 9px, 10px |
| 85 | |
| 86 | ## Layout |
| 87 | |
| 88 | - MUST design for 1920px base viewport width |
| 89 | - SHOULD use consistent element widths: 44px, 10px, 335px, 107px, 142px |
| 90 | - SHOULD maintain text-heavy layout with clear hierarchy |
| 91 | - NEVER use `h-screen`, use `h-dvh` for full viewport height |
| 92 | - MUST respect `safe-area-inset` for fixed elements |
| 93 | - SHOULD use `size-*` for square elements instead of `w-*` + `h-*` |
| 94 | |
| 95 | ### Detected Layout Patterns |
| 96 | |
| 97 | - **Header**: height: 58px |
| 98 | |
| 99 | ## Components |
| 100 | |
| 101 | ### Buttons |
| 102 | |
| 103 | | Variant | Background | Text | Border | Height | Radius | |
| 104 | |---------|------------|------|--------|--------|--------| |
| 105 | | Ghost | transparent | #5B5B5B | none | - | - | |
| 106 | |
| 107 | ## Interactive States |
| 108 | |
| 109 | ### Focus |
| 110 | |
| 111 | - MUST use `2px` outline with accent color (`#194775`) |
| 112 | - MUST use `2px` outline-offset |
| 113 | - NEVER remove focus indicators |
| 114 | |
| 115 | ### Hover |
| 116 | |
| 117 | - Buttons (primary): lighten background by 10% |
| 118 | - Buttons (secondary): use `#EEE9E4` background |
| 119 | - List items: use `#EEE9E4` background |
| 120 | |
| 121 | ### Disabled |
| 122 | |
| 123 | - MUST use `opacity: 0.5` |
| 124 | - MUST use `cursor: not-allowed` |
| 125 | |
| 126 | ## Interaction |
| 127 | |
| 128 | - MUST use an `AlertDialog` for destructive or irreversible actions |
| 129 | - SHOULD use structural skeletons for loading states |
| 130 | - MUST show errors next to where the action happens |
| 131 | - NEVER block paste in `input` or `textarea` elements |
| 132 | - MUST add an `aria-label` to icon-only buttons |
| 133 | |
| 134 | ## Animation |
| 135 | |
| 136 | - NEVER add animation unless it is explicitly requested |
| 137 | - MUST animate only compositor props (`transform`, `opacity`) |
| 138 | - NEVER animate layout properties (`width`, `height`, `top`, `left`, `margin`, `padding`) |
| 139 | - SHOULD use `ease-out` on entrance animations |
| 140 | - NEVER exceed `200ms` for interaction feedback |
| 141 | - SHOULD respe |