File size: 10,120 Bytes
cb3c674 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 | # NETRA Design System & Component Library
## π¨ Color Palette
### Primary Colors
- **Blue 900**: `#082a63` - Dark backgrounds, headings
- **Blue 800**: `#0b3b8a` - Secondary headings
- **Blue 700**: `#0f55c7` - Primary accent
- **Blue 600**: `#1c6ef2` - Interactive elements
### Accent Colors
- **Orange 600**: `#ff7a00` - CTAs, highlights
- **Orange 500**: `#ff922b` - Hover states
- **Orange 100**: `#fff1e6` - Light backgrounds
### Neutral Colors
- **White**: `#ffffff` - Primary background
- **Slate 900**: `#1b2a4a` - Text
- **Slate 700**: `#41557c` - Secondary text
- **Slate 500**: `#7284a8` - Tertiary text
### Status Colors
- **Success (Green)**: `#1f9d55`
- **Warning (Orange)**: `#ff9f1a`
- **Danger (Red)**: `#e53935`
- **Info (Blue)**: `#1c6ef2`
### Semantic Colors
- **Line/Border**: `#d9e4ff`
- **Glass (Semi-transparent)**: `rgba(255, 255, 255, 0.82)`
---
## π Spacing System
```css
/* Base unit: 0.25rem (4px) */
0.25rem = 4px
0.5rem = 8px
0.75rem = 12px
1rem = 16px
1.2rem = 19px
1.5rem = 24px
2rem = 32px
2.2rem = 35px
2.4rem = 38px
```
### Padding & Margin Guidelines
- **Cards/Sections**: 1.2rem - 1.5rem
- **Form Groups**: 0.85rem
- **Buttons**: 0.72rem (vertical), 1.1rem (horizontal)
- **Section Padding**: 4.2rem (vertical), 1rem (horizontal)
---
## π€ Typography
### Font Families
- **Headings**: Sora (weights: 400, 500, 600, 700, 800)
- **Body**: IBM Plex Sans (weights: 400, 500, 600, 700)
### Font Sizes (with `clamp()`)
- **H1 (Hero)**: `clamp(2.4rem, 6vw, 4.1rem)`
- **H2 (Section Title)**: `clamp(1.7rem, 4vw, 2.45rem)`
- **H3 (Subsection)**: `1.3rem`
- **Body**: `1rem`
- **Small**: `0.9rem`
- **Extra Small**: `0.85rem`
### Line Heights
- **Headings**: -0.02em letter-spacing
- **Body**: 1.6 line-height
- **Descriptions**: 1.7 line-height
---
## π Border Radius System
```css
--radius-md: 14px; /* Standard components */
--radius-lg: 22px; /* Large sections, modals */
999px; /* Pill-shaped (badges, chips) */
```
### Usage
- **Buttons**: 12px
- **Input Fields**: 10px
- **Cards**: 22px
- **Badges/Chips**: 999px
---
## π« Shadow System
```css
--shadow-sm: 0 8px 20px rgba(11, 59, 138, 0.08);
--shadow-md: 0 16px 35px rgba(11, 59, 138, 0.12);
--shadow-lg: 0 24px 60px rgba(11, 59, 138, 0.18);
```
### Application
- **Small**: Hover states, subtle elements
- **Medium**: Cards, panels, modals
- **Large**: Hero sections, prominent cards
---
## π Component Specifications
### Buttons
#### Variants
| Type | Background | Color | Shadow |
| --------- | ----------------------- | ----- | ------------------------- |
| Primary | Linear gradient (blue) | White | sm on normal, md on hover |
| Secondary | Linear gradient (blue) | White | sm on normal, md on hover |
| Danger | Linear gradient (red) | White | sm on normal, md on hover |
| Success | Linear gradient (green) | White | sm on normal, md on hover |
| Outline | Transparent + border | White | sm |
#### Sizes
- **Normal**: `0.72rem` padding, `1.1rem` horizontal
- **Large**: `0.95rem` padding, `1.6rem` horizontal
#### States
- **Normal**: Full opacity
- **Hover**: `translateY(-2px)`, enhanced shadow
- **Active**: `translateY(0)`
- **Disabled**: 60% opacity, no interaction
- **Loading**: Spinner appended, disabled
### Cards
#### Types
- **Stat Card**: Summary statistics
- **Feature Card**: Feature descriptions
- **Tech Card**: Technology highlights
- **Dashboard Card**: Main navigation cards
- **Info Card**: Information panels
#### Standard Specifications
- **Padding**: 1.35rem
- **Background**: Glass effect (`rgba(255, 255, 255, 0.82)`)
- **Border**: 1px solid `rgba(255, 255, 255, 0.76)`
- **Border Radius**: 22px
- **Transition**: 0.25s ease on transform and shadow
### Forms
#### Input Fields
- **Border**: 1px solid `#d9e4ff`
- **Border Radius**: 10px
- **Padding**: 0.72rem 0.8rem
- **Focus**: Blue border + 0 0 0 4px shadow
#### Labels
- **Color**: `#1b2a4a`
- **Font Weight**: 600
- **Margin Bottom**: 0.4rem
#### Error States
- **Border Color**: Red
- **Background**: Red tint
- **Error Message**: Red text below field
### Status Chips
```css
.status-chip {
border-radius: 999px;
padding: 0.38rem 0.8rem;
font-size: 0.85rem;
font-weight: 600;
display: inline-flex;
align-items: center;
gap: 0.45rem;
}
```
#### Variants
| Status | Background | Color | Border |
| ------- | -------------------------- | --------- | ------------------------- |
| Success | `rgba(31, 157, 85, 0.12)` | `#1f9d55` | `rgba(31, 157, 85, 0.3)` |
| Warning | `rgba(255, 159, 26, 0.12)` | `#ff9f1a` | `rgba(255, 159, 26, 0.3)` |
| Danger | `rgba(229, 57, 53, 0.12)` | `#e53935` | `rgba(229, 57, 53, 0.3)` |
| Info | `rgba(28, 110, 242, 0.12)` | `#1c6ef2` | `rgba(28, 110, 242, 0.3)` |
### Modals
- **Background**: White
- **Border**: 1px solid `#d9e4ff`
- **Border Radius**: 22px
- **Shadow**: Large shadow
- **Max Width**: 540px
- **Padding**: 1.4rem
### Notifications (Toast)
- **Background**: White
- **Border Left**: 4px colored
- **Border Radius**: 12px
- **Padding**: 1rem 1.2rem
- **Min Width**: 280px
- **Auto Dismiss**: 3000ms
---
## π± Responsive Breakpoints
### Desktop (960px+)
- Full multi-column layouts
- Side-by-side panels
- All features visible
- Desktop navigation
### Tablet (640px - 960px)
- 2-column grids reduced to 2 columns max
- Single column for main content
- Optimized spacing
- Dropdown menus
### Mobile (480px - 640px)
- Single column layouts
- Touch-friendly spacing (minimum 44px taps)
- Simplified navigation
- Condensed modals
### Small Mobile (< 480px)
- Maximum 1 column
- Minimal padding
- Simplified components
- Essential features only
### Landscape (<600px height)
- Reduced vertical padding
- Compact sections
- Optimized for long, narrow screens
---
## π¬ Animation System
### Keyframe Animations
```css
/* Entrance Animations */
fadeIn /* Opacity fade */
slideInUp /* Slide from bottom */
slideInDown /* Slide from top */
slideInLeft /* Slide from left */
slideInRight /* Slide from right */
riseIn /* Rise with fade */
/* Action Animations */
pulse /* Box-shadow pulse */
spin /* Full rotation */
bounce /* Vertical bounce */
shimmer /* Shimmer effect */
```
### Transition Timing
```css
--transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
```
### Animation Timing
- **Fast**: 0.2s - 0.3s (hover states, small changes)
- **Normal**: 0.4s - 0.6s (page transitions, major changes)
- **Slow**: 0.8s - 1s (scroll reveals, long animations)
- **Continuous**: 1.5s - 2s (looping animations)
---
## π Accessibility Standards
### Color Contrast
- Text on background: 4.5:1 minimum (WCAG AA)
- Large text: 3:1 minimum
- Icons: 3:1 minimum
### Focus States
- All interactive elements have visible focus states
- Focus outline: 2px solid, contrasting color
- Not removed, only repositioned if necessary
### Semantic HTML
- Proper heading hierarchy (H1, H2, H3...)
- Form labels associated with inputs
- Buttons used for actions, links for navigation
- ARIA labels where needed
### Motion
- Reduced motion respected via `prefers-reduced-motion`
- No animations longer than 3 seconds that can't be paused
- Auto-playing content has pause controls
---
## π Implementation Guide
### New Components
1. Follow spacing system for padding/margins
2. Use shadow system for depth
3. Apply proper border radius
4. Use CSS variables for colors
5. Implement animation transitions
6. Test on all breakpoints
7. Verify accessibility standards
### New Pages
1. Include `ui-utils.js` script
2. Add `#toast-container` div
3. Use `.reveal` class for animations
4. Apply consistent button styles
5. Use grid layouts with `auto-fit`
6. Test responsive design
7. Verify form accessibility
### Customization
All design values are CSS variables in `:root`:
```css
:root {
--blue-900: #082a63;
--radius-md: 14px;
--transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
/* ... etc ... */
}
```
---
## π Component Examples
### Button Group
```html
<div class="hero-buttons">
<a href="#" class="btn btn-primary btn-large">Primary</a>
<a href="#" class="btn btn-outline btn-large">Outline</a>
</div>
```
### Status Card
```html
<div class="info-card">
<h3>System Health</h3>
<p>All services operational</p>
<span class="status-chip ok">Operational</span>
</div>
```
### Card Grid
```html
<div class="stats-grid">
<div class="stat-card">
<div class="stat-number">99%</div>
<div class="stat-label">Uptime</div>
</div>
<!-- More cards... -->
</div>
```
---
## π― Best Practices
1. **Use CSS Variables**: Always use `--variable-name` for colors and sizes
2. **Consistent Spacing**: Maintain spacing system throughout
3. **Semantic HTML**: Use proper HTML tags for meaning
4. **Mobile First**: Design for small screens first
5. **Animation Moderation**: Use animations purposefully, not excessively
6. **Performance**: Prefer CSS transforms over layout changes
7. **Testing**: Test all components on mobile, tablet, desktop
8. **Accessibility**: Always include keyboard navigation and focus states
---
## π Version History
### v2.0 (Current)
- Enhanced animations and transitions
- Responsive design improvements
- New UI utility library
- Status chips redesign
- Modal dialog system
- Toast notification system
### v1.0
- Initial design system
- Color palette
- Typography
- Basic components
---
_Design System Documentation_
_Last Updated: May 2, 2026_
_NETRA Frontend v2.0_
|