$npx -y skills add ihlamury/design-skills --skill lemonsqueezyLemonsqueezy's UI design system. Use when building interfaces inspired by Lemonsqueezy's aesthetic - light mode, Inter font, 4px grid.
| 1 | # Lemonsqueezy UI Skills |
| 2 | |
| 3 | Opinionated constraints for building Lemonsqueezy-style interfaces with AI agents. |
| 4 | |
| 5 | ## When to Apply |
| 6 | |
| 7 | Reference these guidelines when: |
| 8 | - Building light-mode interfaces |
| 9 | - Creating Lemonsqueezy-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 `#FEFEFE` as page background (`surface-base`) |
| 16 | - MUST use `#9368E3` for primary actions and focus states (`accent`) |
| 17 | - SHOULD reduce color palette (currently 12 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` | #FEFEFE | rgb(254,254,254) | Page background | |
| 25 | | `surface-raised` | #3F01DF | rgb(63,1,223) | Cards, modals, raised surfaces | |
| 26 | | `text-primary` | #D0B4F4 | rgb(208,180,244) | Headings, body text | |
| 27 | | `text-2` | #4F4F50 | rgb(79,79,80) | Additional text | |
| 28 | | `text-secondary` | #8550F5 | rgb(133,80,245) | Secondary, muted text | |
| 29 | | `border-default` | #9368E3 | rgb(147,104,227) | Subtle borders, dividers | |
| 30 | | `accent` | #9368E3 | rgb(147,104,227) | Primary actions, links, focus | |
| 31 | | `warning` | #FCD995 | rgb(252,217,149) | Warning states, cautions | |
| 32 | |
| 33 | ## Typography |
| 34 | |
| 35 | - MUST use `Inter` as primary font family |
| 36 | - SHOULD use single font family for consistency |
| 37 | - MUST use `74px` / `700` for primary headings |
| 38 | - MUST use `31px` / `semi_bold` for body text |
| 39 | - SHOULD reduce font weights (currently 4 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 | 74px | 700 | #F1E8F9 | 1 | |
| 49 | | `body` | Inter | 31px | semi_bold | #E2D2F8 | 1 | |
| 50 | | `text-25px` | Inter | 25px | semi_bold | #E0CDF6 | 1 | |
| 51 | | `text-25px` | Inter | 25px | semi_bold | #E2D1F8 | 1 | |
| 52 | | `text-25px` | Inter | 25px | semi_bold | #DAC6F6 | 1 | |
| 53 | | `text-22px` | Inter | 22px | 500 | #D0B4F4 | 1 | |
| 54 | | `text-18px` | Inter | 18px | 400 | #8A59F2 | 1 | |
| 55 | | `text-15px` | Inter | 15px | 400 | #8A56F5 | 1 | |
| 56 | | `text-15px` | Inter | 15px | 400 | #8955F5 | 1 | |
| 57 | | `text-15px` | Inter | 15px | 400 | #794D14 | 1 | |
| 58 | |
| 59 | ### Typography Reference |
| 60 | |
| 61 | **Font Families:** |
| 62 | - `Inter` (used 18x) |
| 63 | |
| 64 | **Font Sizes:** 11px, 12px, 13px, 14px, 15px, 18px, 22px, 25px, 31px, 74px |
| 65 | |
| 66 | ## Spacing |
| 67 | |
| 68 | - MUST use 4px grid for spacing |
| 69 | - SHOULD use spacing from scale: 2px, 3px, 4px, 5px, 6px, 15px, 16px, 17px |
| 70 | - SHOULD use 4px 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: 17px, 21px, 29px |
| 77 | - SHOULD use 21px+ radius for pill-shaped elements |
| 78 | - SHOULD limit border widths to: 1px, 2px |
| 79 | - SHOULD use 29px as default border-radius |
| 80 | - NEVER use arbitrary border-radius values (use design scale) |
| 81 | - SHOULD use subtle borders (1px) for element separation |
| 82 | |
| 83 | ### Border Radius Reference |
| 84 | |
| 85 | **Scale:** 17px, 21px, 29px |
| 86 | |
| 87 | ## Layout |
| 88 | |
| 89 | - MUST design for 1920px base viewport width |
| 90 | - SHOULD use consistent element widths: 30px, 12px, 145px, 88px, 8px |
| 91 | - SHOULD maintain text-heavy layout with clear hierarchy |
| 92 | - NEVER use `h-screen`, use `h-dvh` for full viewport height |
| 93 | - MUST respect `safe-area-inset` for fixed elements |
| 94 | - SHOULD use `size-*` for square elements instead of `w-*` + `h-*` |
| 95 | |
| 96 | ### Detected Layout Patterns |
| 97 | |
| 98 | - **Main Content**: width: 1920px, height: 1002px |
| 99 | - **Main Content**: width: 1920px, height: 998px |
| 100 | - **Header**: height: 69px |
| 101 | |
| 102 | ## Components |
| 103 | |
| 104 | ### Buttons |
| 105 | |
| 106 | | Variant | Background | Text | Border | Height | Radius | |
| 107 | |---------|------------|------|--------|--------|--------| |
| 108 | | Ghost | transparent | #D0B4F4 | none | - | - | |
| 109 | |
| 110 | ## Interactive States |
| 111 | |
| 112 | ### Focus |
| 113 | |
| 114 | - MUST use `2px` outline with accent color (`#9368E3`) |
| 115 | - MUST use `2px` outline-offset |
| 116 | - NEVER remove focus indicators |
| 117 | |
| 118 | ### Hover |
| 119 | |
| 120 | - Buttons (primary): lighten background by 10% |
| 121 | - Buttons (secondary): use `#3F01DF` background |
| 122 | - List items: use `#3F01DF` background |
| 123 | |
| 124 | ### Disabled |
| 125 | |
| 126 | - MUST use `opacity: 0.5` |
| 127 | - MUST use `cursor: not-allowed` |
| 128 | |
| 129 | ## Interaction |
| 130 | |
| 131 | - MUST use an `AlertDialog` for destructive or irreversible actions |
| 132 | - SHOULD use structural skeletons for loading states |
| 133 | - MUST show errors next to where the action happens |
| 134 | - NEVER block paste in `input` or `textarea` elements |
| 135 | - MUST add an `aria-label` to icon-only buttons |
| 136 | |
| 137 | ## Animation |
| 138 | |
| 139 | - NEVER add animation unless it is explicitly requested |
| 140 | - MUST animate only compositor props (`transform`, `opacity`) |
| 141 | - NEVER animate layout properties (`width`, `height`, `top`, `l |