Changeset 59656 for trunk/src/wp-admin/css/colors/light/colors.scss
- Timestamp:
- 01/16/2025 09:03:12 PM (5 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/css/colors/light/colors.scss
r59185 r59656 1 1 @use "sass:color"; 2 2 3 $scheme-name: "light"; 4 $base-color: #e5e5e5; 5 $icon-color: #999; 3 $highlight-color: #04a4cc; 6 4 $text-color: #333; 7 $highlight-color: #04a4cc; 8 $notification-color: #d64e07; 5 $menu-avatar-frame: #aaa; 9 6 10 $body-background: #f5f5f5; 7 @use "../_admin.scss" with ( 8 $scheme-name: "light", 9 $base-color: #e5e5e5, 10 $icon-color: #999, 11 $text-color: $text-color, 12 $highlight-color: $highlight-color, 13 $notification-color: #d64e07, 11 14 12 $menu-highlight-text: #fff; 13 $menu-highlight-icon: #ccc; 14 $menu-highlight-background: #888; 15 $body-background: #f5f5f5, 15 16 16 $menu-bubble-text: #fff; 17 $menu-avatar-frame: #aaa; 18 $menu-submenu-background: #fff; 17 $menu-highlight-text: #fff, 18 $menu-highlight-icon: #ccc, 19 $menu-highlight-background: #888, 19 20 20 $menu-collapse-text: #777; 21 $menu-collapse-focus-icon: #555; 21 $menu-bubble-text: #fff, 22 $menu-submenu-background: #fff, 22 23 23 $dashboard-accent-1: $highlight-color; 24 $dashboard-accent-2: color.adjust(color.adjust($highlight-color, $lightness: 7%), $saturation: -15%); 25 $dashboard-icon-background: $text-color; 24 $menu-collapse-text: #777, 25 $menu-collapse-focus-icon: #555, 26 26 27 @import "../_admin.scss"; 27 $dashboard-accent-1: $highlight-color, 28 $dashboard-accent-2: color.adjust(color.adjust($highlight-color, $lightness: 7%), $saturation: -15%), 29 $dashboard-icon-background: $text-color 30 ); 28 31 29 32 /* Override the theme filter highlight color for this scheme */ 30 33 .theme-section.current, 31 34 .theme-filter.current { 32 border-bottom-color: $highlight-color;35 border-bottom-color: admin.$highlight-color; 33 36 }
Note: See TracChangeset
for help on using the changeset viewer.