accent.css

Same filename in this branch
  1. main core/themes/admin/migration/css/theme/accent.css
  2. main core/themes/default_admin/migration/css/theme/accent.css
Same filename and directory in other branches
  1. 11.x core/themes/admin/migration/css/theme/accent.css
  2. 11.x core/themes/default_admin/migration/css/theme/accent.css
  3. 11.x core/themes/default_admin/css/theme/accent.css

Accent color and focus ring theme styles.

File

core/themes/default_admin/css/theme/accent.css

View source
  1. /*
  2. * DO NOT EDIT THIS FILE.
  3. * See the following change record for more information,
  4. * https://www.drupal.org/node/3084859
  5. * @preserve
  6. */
  7. /**
  8. * @file
  9. * Accent color and focus ring theme styles.
  10. */
  11. @media (forced-colors: none) {
  12. .gin--high-contrast-mode {
  13. --admin-color-bg: #d9dbde;
  14. --admin-color-text: rgb(0, 0, 0, 0.8);
  15. --admin-color-text-soft: rgb(0, 0, 0, 0.8);
  16. --admin-color-icon: rgb(0, 0, 0, 0.8);
  17. --admin-color-focus: rgb(0, 0, 0, 0.8);
  18. --admin-color-border: rgb(0, 0, 0, 0.8);
  19. --admin-color-border-soft: rgb(0, 0, 0, 0.6);
  20. --admin-color-border-loud: rgb(0, 0, 0, 0.8);
  21. --admin-color-border-input: rgb(0, 0, 0, 0.8);
  22. --admin-color-border-table: rgb(0, 0, 0, 0.8);
  23. .gin--dark-mode
  24. }
  25. }
  26. [data-gin-focus="green"] {
  27. --admin-color-focus: rgb(8, 163, 144, 0.6);
  28. }
  29. [data-gin-focus="claro"] {
  30. --admin-color-focus: rgb(38, 167, 105, 0.6);
  31. }
  32. [data-gin-focus="orange"] {
  33. --admin-color-focus: rgb(236, 124, 87, 0.6);
  34. }
  35. [data-gin-focus="dark"] {
  36. --admin-color-focus: var(--admin-color-focus-neutral);
  37. }
  38. [data-gin-focus="accent"] {
  39. /* stylelint-disable-next-line color-function-notation */
  40. --admin-color-focus: rgb(from var(--admin-color-primary) r g b / 0.6);
  41. }

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.