[ Index ]

PHP Cross Reference of WordPress Trunk (Updated Daily)

Search

title

Body

[close]

/wp-admin/css/colors/coffee/ -> colors.css (source)

   1  /*! This file is auto-generated */
   2  /**
   3   * Grid Units (Spacing)
   4   *
   5   * Based on 4px base unit. Use for padding, margin, and gap values.
   6   */
   7  /**
   8   * Border Radius
   9   */
  10  /**
  11   * Gray Scale
  12   *
  13   * Neutral colors for backgrounds, borders, and text.
  14   */
  15  /**
  16   * Theme Colors (Static reference values)
  17   *
  18   * For actual theme color usage, use var(--wp-admin-theme-color) instead.
  19   * These are provided for reference and for contexts where CSS vars aren't available.
  20   */
  21  /**
  22   * Semantic Colors
  23   *
  24   * Use these for notices, alerts, and status indicators.
  25   * These are intentionally NOT theme-dependent for consistency.
  26   */
  27  /**
  28   * Text Colors
  29   */
  30  /**
  31   * Component Tokens
  32   */
  33  /**
  34   * Typography Scale
  35   */
  36  /**
  37   * Elevation (Box Shadows)
  38   */
  39  /**
  40   * Layout
  41   */
  42  /*
  43   * Button mixin - creates a primary button effect.
  44   * Uses CSS custom properties for theme color support across color schemes.
  45   */
  46  /*
  47   * Secondary button mixin - outlined style with theme color.
  48   * Matches Gutenberg's .is-secondary button variant.
  49   */
  50  /*
  51   * Tertiary button mixin - transparent background, gray text.
  52   */
  53  /**
  54   * This function name uses British English to maintain backward compatibility, as developers
  55   * may use the function in their own admin CSS files. See #56811.
  56   */
  57  body {
  58    background: #f0f0f0;
  59  }
  60  
  61  /* Links */
  62  a {
  63    color: #0073aa;
  64  }
  65  a:hover, a:active, a:focus {
  66    color: rgb(0, 149.5, 221);
  67  }
  68  
  69  #post-body .misc-pub-post-status:before,
  70  #post-body #visibility:before,
  71  .curtime #timestamp:before,
  72  #post-body .misc-pub-revisions:before,
  73  span.wp-media-buttons-icon:before {
  74    color: currentColor;
  75  }
  76  
  77  /* Link button - appears as text link, no border or background */
  78  /* Matches Gutenberg's .is-link button variant */
  79  .wp-core-ui .button-link,
  80  .wp-core-ui .button.button-link {
  81    color: var(--wp-admin-theme-color);
  82  }
  83  .wp-core-ui .button-link:hover, .wp-core-ui .button-link:active,
  84  .wp-core-ui .button.button-link:hover,
  85  .wp-core-ui .button.button-link:active {
  86    color: var(--wp-admin-theme-color-darker-20);
  87  }
  88  .wp-core-ui .button-link:focus,
  89  .wp-core-ui .button.button-link:focus {
  90    color: var(--wp-admin-theme-color);
  91    border-radius: 2px;
  92    box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color);
  93    outline: 1px solid transparent;
  94  }
  95  .wp-core-ui .button-link:disabled, .wp-core-ui .button-link[aria-disabled=true],
  96  .wp-core-ui .button.button-link:disabled,
  97  .wp-core-ui .button.button-link[aria-disabled=true] {
  98    color: #949494;
  99  }
 100  
 101  .media-modal .delete-attachment,
 102  .media-modal .trash-attachment,
 103  .media-modal .untrash-attachment,
 104  .wp-core-ui .button-link.button-link-delete {
 105    color: #cc1818;
 106  }
 107  
 108  .media-modal .delete-attachment:hover,
 109  .media-modal .trash-attachment:hover,
 110  .media-modal .untrash-attachment:hover,
 111  .media-modal .delete-attachment:focus,
 112  .media-modal .trash-attachment:focus,
 113  .media-modal .untrash-attachment:focus,
 114  .wp-core-ui .button-link.button-link-delete:hover,
 115  .wp-core-ui .button-link.button-link-delete:focus {
 116    color: rgb(158.3684210526, 18.6315789474, 18.6315789474);
 117  }
 118  
 119  /* Forms */
 120  input[type=checkbox]:checked {
 121    background: var(--wp-admin-theme-color);
 122    border-color: var(--wp-admin-theme-color);
 123  }
 124  
 125  input[type=radio]:checked {
 126    background: var(--wp-admin-theme-color);
 127    border-color: var(--wp-admin-theme-color);
 128  }
 129  
 130  .wp-core-ui input[type=reset]:hover,
 131  .wp-core-ui input[type=reset]:active {
 132    color: rgb(0, 149.5, 221);
 133  }
 134  
 135  input[type=text]:focus,
 136  input[type=password]:focus,
 137  input[type=color]:focus,
 138  input[type=date]:focus,
 139  input[type=datetime]:focus,
 140  input[type=datetime-local]:focus,
 141  input[type=email]:focus,
 142  input[type=month]:focus,
 143  input[type=number]:focus,
 144  input[type=search]:focus,
 145  input[type=tel]:focus,
 146  input[type=time]:focus,
 147  input[type=url]:focus,
 148  input[type=week]:focus,
 149  select:focus,
 150  textarea:focus {
 151    border-color: var(--wp-admin-theme-color);
 152    box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color);
 153  }
 154  
 155  input[type=checkbox]:focus,
 156  input[type=radio]:focus {
 157    border-color: #1e1e1e;
 158    box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--wp-admin-theme-color);
 159    outline: 2px solid transparent;
 160  }
 161  
 162  .wp-core-ui select:focus {
 163    border-color: var(--wp-admin-theme-color);
 164    box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color);
 165  }
 166  
 167  .wp-tags-autocomplete .ui-state-focus,
 168  .wp-tags-autocomplete [aria-selected=true] {
 169    background-color: var(--wp-admin-theme-color);
 170  }
 171  
 172  #pass1:focus,
 173  #pass1-text:focus {
 174    box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color);
 175  }
 176  
 177  .mailserver-pass-wrap .button.wp-hide-pw:focus {
 178    border-color: var(--wp-admin-theme-color);
 179    box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color);
 180  }
 181  
 182  /* Core UI */
 183  .wp-core-ui {
 184    /* Default button - theme color border and text (matches secondary) */
 185    /* Exclude .button-link without increasing specificity. */
 186  }
 187  .wp-core-ui .button:where(:not(.button-link)) {
 188    background: transparent;
 189    border: 1px solid var(--wp-admin-theme-color);
 190    border-radius: 2px;
 191    color: var(--wp-admin-theme-color);
 192  }
 193  .wp-core-ui .button:where(:not(.button-link)):hover {
 194    background: rgba(var(--wp-admin-theme-color--rgb), 0.04);
 195    border-color: var(--wp-admin-theme-color-darker-20);
 196    color: var(--wp-admin-theme-color-darker-20);
 197  }
 198  .wp-core-ui .button:where(:not(.button-link)):focus {
 199    background: transparent;
 200    border-color: var(--wp-admin-theme-color);
 201    color: var(--wp-admin-theme-color);
 202    box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color);
 203    outline: 1px solid transparent;
 204  }
 205  .wp-core-ui .button:where(:not(.button-link)):active {
 206    background: rgba(var(--wp-admin-theme-color--rgb), 0.08);
 207    border-color: var(--wp-admin-theme-color-darker-20);
 208    color: var(--wp-admin-theme-color-darker-20);
 209    box-shadow: none;
 210  }
 211  .wp-core-ui .button:where(:not(.button-link)):disabled, .wp-core-ui .button:where(:not(.button-link)).disabled {
 212    background: transparent;
 213    border-color: #ddd;
 214    color: #949494;
 215    cursor: not-allowed;
 216  }
 217  .wp-core-ui {
 218    /* Secondary button - same as default */
 219  }
 220  .wp-core-ui .button-secondary {
 221    background: transparent;
 222    border: 1px solid var(--wp-admin-theme-color);
 223    border-radius: 2px;
 224    color: var(--wp-admin-theme-color);
 225  }
 226  .wp-core-ui .button-secondary:hover {
 227    background: rgba(var(--wp-admin-theme-color--rgb), 0.04);
 228    border-color: var(--wp-admin-theme-color-darker-20);
 229    color: var(--wp-admin-theme-color-darker-20);
 230  }
 231  .wp-core-ui .button-secondary:focus {
 232    background: transparent;
 233    border-color: var(--wp-admin-theme-color);
 234    color: var(--wp-admin-theme-color);
 235    box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color);
 236    outline: 1px solid transparent;
 237  }
 238  .wp-core-ui .button-secondary:active {
 239    background: rgba(var(--wp-admin-theme-color--rgb), 0.08);
 240    border-color: var(--wp-admin-theme-color-darker-20);
 241    color: var(--wp-admin-theme-color-darker-20);
 242    box-shadow: none;
 243  }
 244  .wp-core-ui .button-secondary:disabled, .wp-core-ui .button-secondary.disabled {
 245    background: transparent;
 246    border-color: #ddd;
 247    color: #949494;
 248    cursor: not-allowed;
 249  }
 250  .wp-core-ui {
 251    /* Primary button - theme color background */
 252  }
 253  .wp-core-ui .button-primary {
 254    background: var(--wp-admin-theme-color);
 255    border-color: transparent;
 256    border-radius: 2px;
 257    color: #fff;
 258  }
 259  .wp-core-ui .button-primary:hover {
 260    background: var(--wp-admin-theme-color-darker-10);
 261    border-color: transparent;
 262    color: #fff;
 263  }
 264  .wp-core-ui .button-primary:focus {
 265    background: var(--wp-admin-theme-color);
 266    border-color: transparent;
 267    color: #fff;
 268    /* Gutenberg-style focus ring: outer theme color + inset white for contrast */
 269    box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color), inset 0 0 0 1px #fff;
 270    /* Visible in Windows High Contrast mode */
 271    outline: 1px solid transparent;
 272  }
 273  .wp-core-ui .button-primary:active {
 274    background: var(--wp-admin-theme-color-darker-20);
 275    border-color: transparent;
 276    color: #fff;
 277  }
 278  .wp-core-ui .button-primary:disabled, .wp-core-ui .button-primary.disabled {
 279    background: #f0f0f0;
 280    border-color: transparent;
 281    color: #949494;
 282    cursor: not-allowed;
 283  }
 284  .wp-core-ui .button-primary.active, .wp-core-ui .button-primary.active:focus, .wp-core-ui .button-primary.active:hover {
 285    background: var(--wp-admin-theme-color-darker-10);
 286    color: #fff;
 287    border-color: transparent;
 288    box-shadow: none;
 289  }
 290  .wp-core-ui .button-group > .button.active {
 291    border-color: var(--wp-admin-theme-color);
 292    background: rgba(var(--wp-admin-theme-color--rgb), 0.08);
 293  }
 294  .wp-core-ui .wp-ui-primary {
 295    color: #fff;
 296    background-color: #5c4c40;
 297  }
 298  .wp-core-ui .wp-ui-text-primary {
 299    color: #5c4c40;
 300  }
 301  .wp-core-ui .wp-ui-highlight {
 302    color: #fff;
 303    background-color: #916745;
 304  }
 305  .wp-core-ui .wp-ui-text-highlight {
 306    color: #916745;
 307  }
 308  .wp-core-ui .wp-ui-notification {
 309    color: #1e1e1e;
 310    background-color: #9ea476;
 311  }
 312  .wp-core-ui .wp-ui-text-notification {
 313    color: #9ea476;
 314  }
 315  .wp-core-ui .wp-ui-text-icon {
 316    color: hsl(25.7142857143, 7%, 95%);
 317  }
 318  
 319  /* List tables */
 320  .wrap .page-title-action {
 321    background: transparent;
 322    border: 1px solid var(--wp-admin-theme-color);
 323    border-radius: 2px;
 324    color: var(--wp-admin-theme-color);
 325  }
 326  
 327  .wrap .page-title-action:hover {
 328    background: rgba(var(--wp-admin-theme-color--rgb), 0.04);
 329    border-color: var(--wp-admin-theme-color-darker-20);
 330    color: var(--wp-admin-theme-color-darker-20);
 331  }
 332  
 333  .wrap .page-title-action:focus {
 334    background: transparent;
 335    border-color: var(--wp-admin-theme-color);
 336    color: var(--wp-admin-theme-color);
 337    box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color);
 338    outline: 1px solid transparent;
 339  }
 340  
 341  .wrap .page-title-action:active {
 342    background: rgba(var(--wp-admin-theme-color--rgb), 0.08);
 343    border-color: var(--wp-admin-theme-color-darker-20);
 344    color: var(--wp-admin-theme-color-darker-20);
 345    box-shadow: none;
 346  }
 347  
 348  .view-switch a.current:before {
 349    color: #5c4c40;
 350  }
 351  
 352  .view-switch a:hover:before {
 353    color: #9ea476;
 354  }
 355  
 356  /* Admin Menu */
 357  #adminmenuback,
 358  #adminmenuwrap,
 359  #adminmenu {
 360    background: #5c4c40;
 361  }
 362  
 363  #adminmenu a {
 364    color: #fff;
 365  }
 366  
 367  #adminmenu div.wp-menu-image:before {
 368    color: hsl(25.7142857143, 7%, 95%);
 369  }
 370  
 371  #adminmenu a:hover,
 372  #adminmenu li.menu-top:hover,
 373  #adminmenu li.opensub > a.menu-top,
 374  #adminmenu li > a.menu-top:focus {
 375    color: #fff;
 376    background-color: #916745;
 377  }
 378  
 379  #adminmenu li.menu-top:hover div.wp-menu-image:before,
 380  #adminmenu li.opensub > a.menu-top div.wp-menu-image:before {
 381    color: #fff;
 382  }
 383  
 384  /* Active tabs use a bottom border color that matches the page background color. */
 385  .about-wrap .nav-tab-active,
 386  .nav-tab-active,
 387  .nav-tab-active:hover {
 388    background-color: #f0f0f0;
 389    border-bottom-color: #f0f0f0;
 390  }
 391  
 392  /* Admin Menu: submenu */
 393  #adminmenu .wp-submenu,
 394  #adminmenu .wp-has-current-submenu .wp-submenu,
 395  #adminmenu .wp-has-current-submenu.opensub .wp-submenu,
 396  #adminmenu a.wp-has-current-submenu:focus + .wp-submenu {
 397    background: rgb(70.9461538462, 58.6076923077, 49.3538461538);
 398  }
 399  
 400  #adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after,
 401  #adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after {
 402    border-right-color: rgb(70.9461538462, 58.6076923077, 49.3538461538);
 403  }
 404  
 405  #adminmenu .wp-submenu .wp-submenu-head {
 406    color: rgb(206.1, 201.3, 197.7);
 407  }
 408  
 409  #adminmenu .wp-submenu a,
 410  #adminmenu .wp-has-current-submenu .wp-submenu a,
 411  #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a,
 412  #adminmenu .wp-has-current-submenu.opensub .wp-submenu a {
 413    color: rgb(206.1, 201.3, 197.7);
 414  }
 415  #adminmenu .wp-submenu a:focus, #adminmenu .wp-submenu a:hover,
 416  #adminmenu .wp-has-current-submenu .wp-submenu a:focus,
 417  #adminmenu .wp-has-current-submenu .wp-submenu a:hover,
 418  #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:focus,
 419  #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:hover,
 420  #adminmenu .wp-has-current-submenu.opensub .wp-submenu a:focus,
 421  #adminmenu .wp-has-current-submenu.opensub .wp-submenu a:hover {
 422    color: #fff;
 423  }
 424  
 425  /* Admin Menu: current */
 426  #adminmenu .wp-submenu li.current a,
 427  #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a,
 428  #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a {
 429    color: #fff;
 430  }
 431  #adminmenu .wp-submenu li.current a:hover, #adminmenu .wp-submenu li.current a:focus,
 432  #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a:hover,
 433  #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a:focus,
 434  #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:hover,
 435  #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:focus {
 436    color: #fff;
 437  }
 438  
 439  ul#adminmenu a.wp-has-current-submenu:after,
 440  ul#adminmenu > li.current > a.current:after {
 441    border-right-color: #f0f0f0;
 442  }
 443  
 444  #adminmenu li.current a.menu-top,
 445  #adminmenu li.wp-has-current-submenu a.wp-has-current-submenu,
 446  #adminmenu li.wp-has-current-submenu .wp-submenu .wp-submenu-head,
 447  .folded #adminmenu li.current.menu-top {
 448    color: #fff;
 449    background: #916745;
 450  }
 451  
 452  #adminmenu li.wp-has-current-submenu div.wp-menu-image:before,
 453  #adminmenu a.current:hover div.wp-menu-image:before,
 454  #adminmenu li.current div.wp-menu-image:before,
 455  #adminmenu li.wp-has-current-submenu a:focus div.wp-menu-image:before,
 456  #adminmenu li.wp-has-current-submenu.opensub div.wp-menu-image:before,
 457  #adminmenu li:hover div.wp-menu-image:before,
 458  #adminmenu li a:focus div.wp-menu-image:before,
 459  #adminmenu li.opensub div.wp-menu-image:before {
 460    color: #fff;
 461  }
 462  
 463  /* Admin Menu: bubble */
 464  #adminmenu .menu-counter,
 465  #adminmenu .awaiting-mod,
 466  #adminmenu .update-plugins {
 467    color: #1e1e1e;
 468    background: #9ea476;
 469  }
 470  
 471  #adminmenu li.current a .awaiting-mod,
 472  #adminmenu li a.wp-has-current-submenu .update-plugins,
 473  #adminmenu li:hover a .awaiting-mod,
 474  #adminmenu li.menu-top:hover > a .update-plugins {
 475    color: #fff;
 476    background: rgb(70.9461538462, 58.6076923077, 49.3538461538);
 477  }
 478  
 479  /* Admin Menu: collapse button */
 480  #collapse-button {
 481    color: hsl(25.7142857143, 7%, 95%);
 482  }
 483  
 484  #collapse-button:hover,
 485  #collapse-button:focus {
 486    color: #fff;
 487    background: #916745;
 488  }
 489  
 490  /* Admin Bar */
 491  #wpadminbar {
 492    color: #fff;
 493    background: #5c4c40;
 494  }
 495  
 496  #wpadminbar .ab-item,
 497  #wpadminbar a.ab-item,
 498  #wpadminbar > #wp-toolbar span.ab-label,
 499  #wpadminbar > #wp-toolbar span.noticon {
 500    color: #fff;
 501  }
 502  
 503  #wpadminbar .ab-icon,
 504  #wpadminbar .ab-icon:before,
 505  #wpadminbar .ab-item:before,
 506  #wpadminbar .ab-item:after {
 507    color: hsl(25.7142857143, 7%, 95%);
 508  }
 509  
 510  #wpadminbar:not(.mobile) .ab-top-menu > li:hover > .ab-item,
 511  #wpadminbar:not(.mobile) .ab-top-menu > li > .ab-item:focus,
 512  #wpadminbar.nojq .quicklinks .ab-top-menu > li > .ab-item:focus,
 513  #wpadminbar.nojs .ab-top-menu > li.menupop:hover > .ab-item,
 514  #wpadminbar .ab-top-menu > li.menupop.hover > .ab-item {
 515    color: #fff;
 516    background: rgb(70.9461538462, 58.6076923077, 49.3538461538);
 517  }
 518  
 519  #wpadminbar:not(.mobile) > #wp-toolbar li:hover span.ab-label,
 520  #wpadminbar:not(.mobile) > #wp-toolbar li.hover span.ab-label,
 521  #wpadminbar:not(.mobile) > #wp-toolbar a:focus span.ab-label {
 522    color: #fff;
 523  }
 524  
 525  #wpadminbar:not(.mobile) li:hover .ab-icon:before,
 526  #wpadminbar:not(.mobile) li:hover .ab-item:before,
 527  #wpadminbar:not(.mobile) li:hover .ab-item:after,
 528  #wpadminbar:not(.mobile) li:hover #adminbarsearch:before {
 529    color: #fff;
 530  }
 531  
 532  /* Admin Bar: submenu */
 533  #wpadminbar .menupop .ab-sub-wrapper {
 534    background: rgb(70.9461538462, 58.6076923077, 49.3538461538);
 535  }
 536  
 537  #wpadminbar .quicklinks .menupop ul.ab-sub-secondary,
 538  #wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu {
 539    background: rgb(106.3443461538, 94.3508076923, 85.3556538462);
 540  }
 541  
 542  #wpadminbar .ab-submenu .ab-item,
 543  #wpadminbar .quicklinks .menupop ul li a,
 544  #wpadminbar .quicklinks .menupop.hover ul li a,
 545  #wpadminbar.nojs .quicklinks .menupop:hover ul li a {
 546    color: rgb(206.1, 201.3, 197.7);
 547  }
 548  
 549  #wpadminbar .quicklinks li .blavatar,
 550  #wpadminbar .menupop .menupop > .ab-item:before {
 551    color: hsl(25.7142857143, 7%, 95%);
 552  }
 553  
 554  #wpadminbar .quicklinks .menupop ul li a:hover,
 555  #wpadminbar .quicklinks .menupop ul li a:focus,
 556  #wpadminbar .quicklinks .menupop ul li a:hover strong,
 557  #wpadminbar .quicklinks .menupop ul li a:focus strong,
 558  #wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover > a,
 559  #wpadminbar .quicklinks .menupop.hover ul li a:hover,
 560  #wpadminbar .quicklinks .menupop.hover ul li a:focus,
 561  #wpadminbar.nojs .quicklinks .menupop:hover ul li a:hover,
 562  #wpadminbar.nojs .quicklinks .menupop:hover ul li a:focus,
 563  #wpadminbar li:hover .ab-icon:before,
 564  #wpadminbar li:hover .ab-item:before,
 565  #wpadminbar li a:focus .ab-icon:before,
 566  #wpadminbar li .ab-item:focus:before,
 567  #wpadminbar li .ab-item:focus .ab-icon:before,
 568  #wpadminbar li.hover .ab-icon:before,
 569  #wpadminbar li.hover .ab-item:before,
 570  #wpadminbar li:hover #adminbarsearch:before,
 571  #wpadminbar li #adminbarsearch.adminbar-focused:before {
 572    color: #fff;
 573  }
 574  
 575  #wpadminbar .quicklinks li a:hover .blavatar,
 576  #wpadminbar .quicklinks li a:focus .blavatar,
 577  #wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover > a .blavatar,
 578  #wpadminbar .menupop .menupop > .ab-item:hover:before,
 579  #wpadminbar.mobile .quicklinks .hover .ab-icon:before,
 580  #wpadminbar.mobile .quicklinks .hover .ab-item:before {
 581    color: #fff;
 582  }
 583  
 584  #wpadminbar.mobile .quicklinks .ab-icon:before,
 585  #wpadminbar.mobile .quicklinks .ab-item:before {
 586    color: hsl(25.7142857143, 7%, 95%);
 587  }
 588  
 589  /* Admin Bar: search */
 590  #wpadminbar #adminbarsearch:before {
 591    color: hsl(25.7142857143, 7%, 95%);
 592  }
 593  
 594  #wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus {
 595    color: #fff;
 596    background: rgb(113.0538461538, 93.3923076923, 78.6461538462);
 597  }
 598  
 599  /* Admin Bar: recovery mode */
 600  #wpadminbar #wp-admin-bar-recovery-mode {
 601    color: #1e1e1e;
 602    background-color: #9ea476;
 603  }
 604  
 605  #wpadminbar #wp-admin-bar-recovery-mode .ab-item,
 606  #wpadminbar #wp-admin-bar-recovery-mode a.ab-item {
 607    color: #1e1e1e;
 608  }
 609  
 610  #wpadminbar .ab-top-menu > #wp-admin-bar-recovery-mode.hover > .ab-item,
 611  #wpadminbar.nojq .quicklinks .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus,
 612  #wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode:hover > .ab-item,
 613  #wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus {
 614    color: #1e1e1e;
 615    background-color: rgb(142.2, 147.6, 106.2);
 616  }
 617  
 618  /* Admin Bar: my account */
 619  #wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img {
 620    border-color: rgb(113.0538461538, 93.3923076923, 78.6461538462);
 621    background-color: rgb(113.0538461538, 93.3923076923, 78.6461538462);
 622  }
 623  
 624  #wpadminbar #wp-admin-bar-user-info .display-name {
 625    color: #fff;
 626  }
 627  
 628  #wpadminbar #wp-admin-bar-user-info a:hover .display-name {
 629    color: #fff;
 630  }
 631  
 632  #wpadminbar #wp-admin-bar-user-info .username {
 633    color: rgb(206.1, 201.3, 197.7);
 634  }
 635  
 636  /* Pointers */
 637  .wp-pointer .wp-pointer-content h3 {
 638    background-color: #916745;
 639    border-color: rgb(127.7219626168, 90.726635514, 60.7780373832);
 640  }
 641  
 642  .wp-pointer .wp-pointer-content h3:before {
 643    color: #916745;
 644  }
 645  
 646  .wp-pointer.wp-pointer-top .wp-pointer-arrow,
 647  .wp-pointer.wp-pointer-top .wp-pointer-arrow-inner,
 648  .wp-pointer.wp-pointer-undefined .wp-pointer-arrow,
 649  .wp-pointer.wp-pointer-undefined .wp-pointer-arrow-inner {
 650    border-bottom-color: #916745;
 651  }
 652  
 653  /* Media */
 654  .media-item .bar,
 655  .media-progress-bar div {
 656    background-color: #916745;
 657  }
 658  
 659  .details.attachment {
 660    box-shadow: inset 0 0 0 3px #fff, inset 0 0 0 7px #916745;
 661  }
 662  
 663  .attachment.details .check {
 664    background-color: #916745;
 665    box-shadow: 0 0 0 1px #fff, 0 0 0 2px #916745;
 666  }
 667  
 668  .media-selection .attachment.selection.details .thumbnail {
 669    box-shadow: 0 0 0 1px #fff, 0 0 0 3px #916745;
 670  }
 671  
 672  /* Themes */
 673  .theme-browser .theme.active .theme-name,
 674  .theme-browser .theme.add-new-theme a:hover:after,
 675  .theme-browser .theme.add-new-theme a:focus:after {
 676    background: #916745;
 677  }
 678  
 679  .theme-browser .theme.add-new-theme a:hover span:after,
 680  .theme-browser .theme.add-new-theme a:focus span:after {
 681    color: #916745;
 682  }
 683  
 684  .theme-section.current,
 685  .theme-filter.current {
 686    border-bottom-color: #5c4c40;
 687  }
 688  
 689  body.more-filters-opened .more-filters {
 690    color: #fff;
 691    background-color: #5c4c40;
 692  }
 693  
 694  body.more-filters-opened .more-filters:before {
 695    color: #fff;
 696  }
 697  
 698  body.more-filters-opened .more-filters:hover,
 699  body.more-filters-opened .more-filters:focus {
 700    background-color: #916745;
 701    color: #fff;
 702  }
 703  
 704  body.more-filters-opened .more-filters:hover:before,
 705  body.more-filters-opened .more-filters:focus:before {
 706    color: #fff;
 707  }
 708  
 709  /* Widgets */
 710  .widgets-chooser li.widgets-chooser-selected {
 711    background-color: #916745;
 712    color: #fff;
 713  }
 714  
 715  .widgets-chooser li.widgets-chooser-selected:before,
 716  .widgets-chooser li.widgets-chooser-selected:focus:before {
 717    color: #fff;
 718  }
 719  
 720  /* Nav Menus */
 721  .nav-menus-php .item-edit:focus:before {
 722    box-shadow: 0 0 0 1px rgb(176.0046728972, 127.9205607477, 88.9953271028), 0 0 2px 1px #916745;
 723  }
 724  
 725  /* Responsive Component */
 726  div#wp-responsive-toggle a:before {
 727    color: hsl(25.7142857143, 7%, 95%);
 728  }
 729  
 730  .wp-responsive-open div#wp-responsive-toggle a {
 731    border-color: transparent;
 732    background: #916745;
 733  }
 734  
 735  .wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a {
 736    background: rgb(70.9461538462, 58.6076923077, 49.3538461538);
 737  }
 738  
 739  .wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before {
 740    color: hsl(25.7142857143, 7%, 95%);
 741  }
 742  
 743  /* TinyMCE */
 744  .mce-container.mce-menu .mce-menu-item:hover,
 745  .mce-container.mce-menu .mce-menu-item.mce-selected,
 746  .mce-container.mce-menu .mce-menu-item:focus,
 747  .mce-container.mce-menu .mce-menu-item-normal.mce-active,
 748  .mce-container.mce-menu .mce-menu-item-preview.mce-active {
 749    background: #916745;
 750  }
 751  
 752  /* Customizer */
 753  .wp-core-ui #customize-controls .control-section:hover > .accordion-section-title,
 754  .wp-core-ui #customize-controls .control-section .accordion-section-title:hover,
 755  .wp-core-ui #customize-controls .control-section.open .accordion-section-title,
 756  .wp-core-ui #customize-controls .control-section .accordion-section-title:focus {
 757    color: #0073aa;
 758    border-left-color: #916745;
 759  }
 760  .wp-core-ui .customize-controls-close:focus,
 761  .wp-core-ui .customize-controls-close:hover,
 762  .wp-core-ui .customize-controls-preview-toggle:focus,
 763  .wp-core-ui .customize-controls-preview-toggle:hover {
 764    color: #0073aa;
 765    border-top-color: #916745;
 766  }
 767  .wp-core-ui .customize-panel-back:hover,
 768  .wp-core-ui .customize-panel-back:focus,
 769  .wp-core-ui .customize-section-back:hover,
 770  .wp-core-ui .customize-section-back:focus {
 771    color: #0073aa;
 772    border-left-color: #916745;
 773  }
 774  .wp-core-ui .customize-screen-options-toggle:hover,
 775  .wp-core-ui .customize-screen-options-toggle:active,
 776  .wp-core-ui .customize-screen-options-toggle:focus,
 777  .wp-core-ui .active-menu-screen-options .customize-screen-options-toggle,
 778  .wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:hover,
 779  .wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:active,
 780  .wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:focus {
 781    color: #0073aa;
 782  }
 783  .wp-core-ui .customize-screen-options-toggle:focus:before,
 784  .wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus:before, .wp-core-ui.wp-customizer button:focus .toggle-indicator:before,
 785  .wp-core-ui .menu-item-bar .item-delete:focus:before,
 786  .wp-core-ui #available-menu-items .item-add:focus:before,
 787  .wp-core-ui #customize-save-button-wrapper .save:focus,
 788  .wp-core-ui #publish-settings:focus {
 789    box-shadow: 0 0 0 1px rgb(176.0046728972, 127.9205607477, 88.9953271028), 0 0 2px 1px #916745;
 790  }
 791  .wp-core-ui #customize-controls .customize-info.open .customize-help-toggle,
 792  .wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus,
 793  .wp-core-ui #customize-controls .customize-info .customize-help-toggle:hover {
 794    color: #0073aa;
 795  }
 796  .wp-core-ui .control-panel-themes .customize-themes-section-title:focus,
 797  .wp-core-ui .control-panel-themes .customize-themes-section-title:hover {
 798    border-left-color: #916745;
 799    color: #0073aa;
 800  }
 801  .wp-core-ui .control-panel-themes .theme-section .customize-themes-section-title.selected:after {
 802    background: #916745;
 803  }
 804  .wp-core-ui .control-panel-themes .customize-themes-section-title.selected {
 805    color: #0073aa;
 806  }
 807  .wp-core-ui #customize-theme-controls .control-section:hover > .accordion-section-title:after,
 808  .wp-core-ui #customize-theme-controls .control-section .accordion-section-title:hover:after,
 809  .wp-core-ui #customize-theme-controls .control-section.open .accordion-section-title:after,
 810  .wp-core-ui #customize-theme-controls .control-section .accordion-section-title:focus:after,
 811  .wp-core-ui #customize-outer-theme-controls .control-section:hover > .accordion-section-title:after,
 812  .wp-core-ui #customize-outer-theme-controls .control-section .accordion-section-title:hover:after,
 813  .wp-core-ui #customize-outer-theme-controls .control-section.open .accordion-section-title:after,
 814  .wp-core-ui #customize-outer-theme-controls .control-section .accordion-section-title:focus:after {
 815    color: #0073aa;
 816  }
 817  .wp-core-ui .customize-control .attachment-media-view .button-add-media:focus {
 818    background-color: #fbfbfc;
 819    border-color: #916745;
 820    border-style: solid;
 821    box-shadow: 0 0 0 1px #916745;
 822    outline: 2px solid transparent;
 823  }
 824  .wp-core-ui .wp-full-overlay-footer .devices button:focus,
 825  .wp-core-ui .wp-full-overlay-footer .devices button.active:hover {
 826    border-bottom-color: #916745;
 827  }
 828  .wp-core-ui .wp-full-overlay-footer .devices button:hover:before,
 829  .wp-core-ui .wp-full-overlay-footer .devices button:focus:before {
 830    color: #916745;
 831  }
 832  .wp-core-ui .wp-full-overlay .collapse-sidebar:hover,
 833  .wp-core-ui .wp-full-overlay .collapse-sidebar:focus {
 834    color: #916745;
 835  }
 836  .wp-core-ui .wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-arrow,
 837  .wp-core-ui .wp-full-overlay .collapse-sidebar:focus .collapse-sidebar-arrow {
 838    box-shadow: 0 0 0 1px rgb(176.0046728972, 127.9205607477, 88.9953271028), 0 0 2px 1px #916745;
 839  }
 840  .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover {
 841    border-bottom-color: #916745;
 842    color: #0073aa;
 843  }


Generated : Sun Sep 6 08:20:27 2026 Cross-referenced by PHPXref