mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
53 lines
1.3 KiB
SCSS
Executable File
53 lines
1.3 KiB
SCSS
Executable File
/**
|
|
* This file contains the default theme definitions for the admin interface.
|
|
*
|
|
* @package sapphire
|
|
* @subpackage admin
|
|
*/
|
|
|
|
/** -----------------------------------------------
|
|
* Colours
|
|
* ------------------------------------------------ */
|
|
$color-base: #b0bec7;
|
|
|
|
$color-widget-bg: lighten($color-base, 20%);
|
|
|
|
$color-dark-bg: #003050;
|
|
$color-dark-separator: #19435c;
|
|
|
|
$color-shadow-light: rgba(201, 205, 206, 0.8);
|
|
$color-shadow-dark: rgba(107, 120, 123, 0.5);
|
|
|
|
$color-highlight: #FFFF66;
|
|
|
|
$color-menu-button: #338DC1;
|
|
$color-menu-background: #c6d7df;
|
|
$color-menu-border: #8c99a1;
|
|
|
|
$color-text: #444;
|
|
$color-text-light: white;
|
|
$color-text-light-link: white;
|
|
$color-text-dark: #1f1f1f;
|
|
$color-text-dark-link: #3EBAE0;
|
|
|
|
$color-button-constructive: #77b53f;
|
|
$color-button-destructive: #f00;
|
|
|
|
$color-warning: #FF9300;
|
|
$color-error: #FF9300;
|
|
$color-notice: #FF9300;
|
|
|
|
/** -----------------------------------------------
|
|
* Typography
|
|
* ------------------------------------------------ */
|
|
$font-family: Verdana, Arial, sans-serif;
|
|
$font-base-size: 13px;
|
|
$font-small-size: 11px;
|
|
$font-base-lineheight: 16px;
|
|
|
|
/** -----------------------------------------------
|
|
* Application Logo (CMS Logo)
|
|
* ------------------------------------------------ */
|
|
$application-logo-small: image-url("logo_small.png");
|
|
$application-logo-small-ysize: 25px;
|
|
$application-logo-small-xsize: 25px; |