| 1 |
/* ========================================================================== |
| 2 |
WPSubscription Admin Components (prefix: wpsubs-) |
| 3 |
Design reference: WP SmartPay sp-layout.css |
| 4 |
========================================================================== */ |
| 5 |
|
| 6 |
/* -------------------------------------------------------------------------- |
| 7 |
Design tokens |
| 8 |
-------------------------------------------------------------------------- */ |
| 9 |
:root { |
| 10 |
--wpsubs-brand: #ff4d00; |
| 11 |
--wpsubs-brand-dark: #d93f00; |
| 12 |
--wpsubs-brand-light: #fff1eb; |
| 13 |
--wpsubs-brand-ring: rgba(255, 77, 0, 0.2); |
| 14 |
|
| 15 |
--wpsubs-surface: #ffffff; |
| 16 |
--wpsubs-surface-muted: #f9fafb; |
| 17 |
--wpsubs-border: #e5e7eb; |
| 18 |
--wpsubs-border-strong: #d1d5db; |
| 19 |
|
| 20 |
--wpsubs-text: #374151; |
| 21 |
--wpsubs-text-muted: #6b7280; |
| 22 |
--wpsubs-text-subtle: #9ca3af; |
| 23 |
|
| 24 |
--wpsubs-radius: 8px; |
| 25 |
--wpsubs-radius-sm: 5px; |
| 26 |
--wpsubs-shadow: 0 1px 3px rgba(0, 0, 0, 0.08); |
| 27 |
--wpsubs-shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1), 0 1px 4px rgba(0, 0, 0, 0.06); |
| 28 |
} |
| 29 |
|