mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
33 lines
1.0 KiB
SCSS
Executable File
33 lines
1.0 KiB
SCSS
Executable File
/**
|
|
* This file contains the grayscale theme definitions for the admin interface.
|
|
*
|
|
*
|
|
* @package sapphire
|
|
* @subpackage admin
|
|
*/
|
|
|
|
/** -----------------------------------------------
|
|
* Colours
|
|
* ------------------------------------------------ */
|
|
$color-base: grayscale(#B0BFC6);
|
|
$color-widget-bg: grayscale(lighten($color-base, 20%));
|
|
$color-dark-bg: grayscale(#003050);
|
|
$color-shadow-light: grayscale(#aaa);
|
|
$color-shadow-dark: grayscale(#333);
|
|
$color-highlight: grayscale(#FFFF66);
|
|
$color-menu-button: grayscale(#338DC1);
|
|
$color-text: grayscale(#444);
|
|
$color-text-light: white;
|
|
$color-text-light-link: white;
|
|
$color-text-dark: grayscale(#333);
|
|
$color-text-dark-link: grayscale(#3EBAE0);
|
|
$color-button-constructive: grayscale(#77b53f);
|
|
$color-button-destructive: grayscale(#f00);
|
|
$color-warning: grayscale(#FF9300);
|
|
$color-error: grayscale(#FF9300);
|
|
$color-notice: grayscale(#FF9300);
|
|
|
|
/** -----------------------------------------------
|
|
* Typography
|
|
* ------------------------------------------------ */
|
|
$default-fonts: Verdana, Arial, sans-serif; |