Ashby UI Skills
Opinionated constraints for building Ashby-style interfaces with AI agents.
When to Apply
Reference these guidelines when:
- Building dark-mode interfaces
- Creating Ashby-inspired design systems
- Implementing UIs with Inter font and 4px grid
Colors
- MUST use dark backgrounds (lightness < 20) for primary surfaces - detected lightness: 9
- MUST use
#0E1122 as page background (surface-base)
- SHOULD limit color palette to 8 distinct colors
- MUST maintain text contrast ratio of at least 4.5:1 for accessibility
Semantic Tokens
| Token |
HEX |
RGB |
Usage |
surface-base |
#0E1122 |
rgb(14,17,34) |
Page background |
surface-raised |
#FEFEFE |
rgb(254,254,254) |
Cards, modals, raised surfaces |
text-primary |
#D6D9DD |
rgb(214,217,221) |
Headings, body text |
text-secondary |
#34384D |
rgb(52,56,77) |
Secondary, muted text |
text-tertiary |
#797979 |
rgb(121,121,121) |
Additional text |
border-default |
#818288 |
rgb(129,130,136) |
Subtle borders, dividers |
Typography
- MUST use
Inter as primary font family
- SHOULD use single font family for consistency
- MUST use
28px / 700 for primary headings
- MUST use
24px / semi_bold for body text
- SHOULD reduce font weights (currently 4 detected)
- MUST use
text-balance for headings and text-pretty for body text
- SHOULD use
tabular-nums for numeric data
- NEVER modify letter-spacing unless explicitly requested
Text Styles
| Style |
Font |
Size |
Weight |
Color |
Count |
heading-1 |
Inter |
28px |
700 |
#E6E8EB |
1 |
heading-2 |
Inter |
25px |
semi_bold |
#D1D3D8 |
1 |
heading-3 |
Inter |
24px |
semi_bold |
#E2E5E9 |
1 |
body |
Inter |
24px |
semi_bold |
#E0E2E6 |
1 |
body-secondary |
Inter |
24px |
semi_bold |
#D7D9DD |
1 |
text-19px |
Inter |
19px |
semi_bold |
#D6D9DD |
1 |
text-19px |
Inter |
19px |
400 |
#507A5D |
1 |
text-16px |
Inter |
16px |
400 |
#797979 |
1 |
text-15px |
Inter |
15px |
400 |
#34384D |
1 |
caption |
Inter |
14px |
400 |
#313549 |
1 |
Typography Reference
Font Families:
Font Sizes: 12px, 13px, 14px, 15px, 16px, 19px, 24px, 25px, 28px
Spacing
- MUST use 4px grid for spacing
- SHOULD use spacing from scale: 2px, 3px, 4px, 5px, 88px
- SHOULD use 2px as default gap between elements
- NEVER use arbitrary spacing values (use design scale)
- SHOULD maintain consistent padding within containers
Borders
- MUST use border-radius from scale: 10px
- MUST use 4px border width consistently
- SHOULD use 10px as default border-radius
- NEVER use arbitrary border-radius values (use design scale)
- SHOULD use subtle borders (1px) for element separation
Border Radius Reference
Scale: 10px
Layout
- MUST design for 1920px base viewport width
- SHOULD use consistent element widths: 560px, 17px, 564px, 1px, 79px
- SHOULD maintain text-heavy layout with clear hierarchy
- NEVER use
h-screen, use h-dvh for full viewport height
- MUST respect
safe-area-inset for fixed elements
- SHOULD use
size-* for square elements instead of w-* + h-*
Components
- MUST use
0px height for input fields
Inputs
Interactive States
Focus
- MUST use
2px outline with accent color (#5E6AD2)
- MUST use
2px outline-offset
- NEVER remove focus indicators
Hover
- Buttons (primary): lighten background by 10%
- Buttons (secondary): use
#FEFEFE background
- List items: use
#FEFEFE background
Disabled
- MUST use
opacity: 0.5
- MUST use
cursor: not-allowed
Interaction
- MUST use an
AlertDialog for destructive or irreversible actions
- SHOULD use structural skeletons for loading states
- MUST show errors next to where the action happens
- NEVER block paste in
input or textarea elements
- MUST add an
aria-label to icon-only buttons
Animation
- NEVER add animation unless it is explicitly requested
- MUST animate only compositor props (
transform, opacity)
- NEVER animate layout properties (
width, height, top, left, margin, padding)
- SHOULD use
ease-out on entrance animations
- NEVER exceed
200ms for interaction feedback
- SHOULD respect
prefers-reduced-motion
Performance
- NEVER animate large
blur() or backdrop-filter surfaces
- NEVER apply
will-change outside an active animation
- NEVER use
useEffect for anything that can be expressed as render logic
1---2name: ashby-ui-skills3description: Ashby's UI design system. Use when building interfaces inspired by Ashby's aesthetic - dark mode, Inter font, 4px grid.4license: MIT5---6
7# Ashby UI Skills
8
9Opinionated constraints for building Ashby-style interfaces with AI agents.
10
11## When to Apply
12
13Reference these guidelines when:
14- Building dark-mode interfaces
15- Creating Ashby-inspired design systems
16- Implementing UIs with Inter font and 4px grid
17
18## Colors
19
20- MUST use dark backgrounds (lightness < 20) for primary surfaces - detected lightness: 9
21- MUST use `#0E1122` as page background (`surface-base`)
22- SHOULD limit color palette to 8 distinct colors
23- MUST maintain text contrast ratio of at least 4.5:1 for accessibility
24
25### Semantic Tokens
26
27| Token | HEX | RGB | Usage |
28|-------|-----|-----|-------|
29| `surface-base` | #0E1122 | rgb(14,17,34) | Page background |
30| `surface-raised` | #FEFEFE | rgb(254,254,254) | Cards, modals, raised surfaces |
31| `text-primary` | #D6D9DD | rgb(214,217,221) | Headings, body text |
32| `text-secondary` | #34384D | rgb(52,56,77) | Secondary, muted text |
33| `text-tertiary` | #797979 | rgb(121,121,121) | Additional text |
34| `border-default` | #818288 | rgb(129,130,136) | Subtle borders, dividers |
35
36## Typography
37
38- MUST use `Inter` as primary font family
39- SHOULD use single font family for consistency
40- MUST use `28px` / `700` for primary headings
41- MUST use `24px` / `semi_bold` for body text
42- SHOULD reduce font weights (currently 4 detected)
43- MUST use `text-balance` for headings and `text-pretty` for body text
44- SHOULD use `tabular-nums` for numeric data
45- NEVER modify letter-spacing unless explicitly requested
46
47### Text Styles
48
49| Style | Font | Size | Weight | Color | Count |
50|-------|------|------|--------|-------|-------|
51| `heading-1` | Inter | 28px | 700 | #E6E8EB | 1 |
52| `heading-2` | Inter | 25px | semi_bold | #D1D3D8 | 1 |
53| `heading-3` | Inter | 24px | semi_bold | #E2E5E9 | 1 |
54| `body` | Inter | 24px | semi_bold | #E0E2E6 | 1 |
55| `body-secondary` | Inter | 24px | semi_bold | #D7D9DD | 1 |
56| `text-19px` | Inter | 19px | semi_bold | #D6D9DD | 1 |
57| `text-19px` | Inter | 19px | 400 | #507A5D | 1 |
58| `text-16px` | Inter | 16px | 400 | #797979 | 1 |
59| `text-15px` | Inter | 15px | 400 | #34384D | 1 |
60| `caption` | Inter | 14px | 400 | #313549 | 1 |
61
62### Typography Reference
63
64**Font Families:**
65- `Inter` (used 16x)
66
67**Font Sizes:** 12px, 13px, 14px, 15px, 16px, 19px, 24px, 25px, 28px
68
69## Spacing
70
71- MUST use 4px grid for spacing
72- SHOULD use spacing from scale: 2px, 3px, 4px, 5px, 88px
73- SHOULD use 2px as default gap between elements
74- NEVER use arbitrary spacing values (use design scale)
75- SHOULD maintain consistent padding within containers
76
77## Borders
78
79- MUST use border-radius from scale: 10px
80- MUST use 4px border width consistently
81- SHOULD use 10px as default border-radius
82- NEVER use arbitrary border-radius values (use design scale)
83- SHOULD use subtle borders (1px) for element separation
84
85### Border Radius Reference
86
87**Scale:** 10px
88
89## Layout
90
91- MUST design for 1920px base viewport width
92- SHOULD use consistent element widths: 560px, 17px, 564px, 1px, 79px
93- SHOULD maintain text-heavy layout with clear hierarchy
94- NEVER use `h-screen`, use `h-dvh` for full viewport height
95- MUST respect `safe-area-inset` for fixed elements
96- SHOULD use `size-*` for square elements instead of `w-*` + `h-*`
97
98## Components
99
100- MUST use `0px` height for input fields
101
102### Inputs
103
104- Height: `0px`
105
106## Interactive States
107
108### Focus
109
110- MUST use `2px` outline with accent color (`#5E6AD2`)
111- MUST use `2px` outline-offset
112- NEVER remove focus indicators
113
114### Hover
115
116- Buttons (primary): lighten background by 10%
117- Buttons (secondary): use `#FEFEFE` background
118- List items: use `#FEFEFE` background
119
120### Disabled
121
122- MUST use `opacity: 0.5`
123- MUST use `cursor: not-allowed`
124
125## Interaction
126
127- MUST use an `AlertDialog` for destructive or irreversible actions
128- SHOULD use structural skeletons for loading states
129- MUST show errors next to where the action happens
130- NEVER block paste in `input` or `textarea` elements
131- MUST add an `aria-label` to icon-only buttons
132
133## Animation
134
135- NEVER add animation unless it is explicitly requested
136- MUST animate only compositor props (`transform`, `opacity`)
137- NEVER animate layout properties (`width`, `height`, `top`, `left`, `margin`, `padding`)
138- SHOULD use `ease-out` on entrance animations
139- NEVER exceed `200ms` for interaction feedback
140- SHOULD respect `prefers-reduced-motion`
141
142## Performance
143
144- NEVER animate large `blur()` or `backdrop-filter` surfaces
145- NEVER apply `will-change` outside an active animation
146- NEVER use `useEffect` for anything that can be expressed as render logic