| 1234567891011121314151617181920212223242526272829303132 |
- /* ============================================
- uni.scss — Global SCSS Variables
-
- All colors are now CSS custom properties
- defined in styles/theme.scss.
- Only structural tokens remain here.
- ============================================ */
- // Import theme system
- @import './styles/theme.scss';
- /* Spacing (unchanged) */
- $spacing-xs: 4px;
- $spacing-sm: 8px;
- $spacing-md: var(--spacing-md);
- $spacing-lg: var(--spacing-lg);
- $spacing-xl: var(--spacing-xl);
- /* Border radius (unchanged) */
- $radius-xs: var(--radius-xs);
- $radius-sm: var(--radius-sm);
- $radius-md: var(--radius-md);
- $radius-lg: var(--radius-lg);
- $radius-xl: var(--radius-xl);
- $radius-full: var(--radius-full);
- /* Typography (unchanged) */
- $font-xs: var(--font-xs);
- $font-sm: var(--font-sm);
- $font-base: var(--font-base);
- $font-lg: var(--font-lg);
- $font-xl: var(--font-xl);
|