mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-19 19:57:22 +08:00
32 lines
858 B
SCSS
32 lines
858 B
SCSS
|
|
// Default Theme
|
|
// ----------------------------------
|
|
|
|
$colors: (
|
|
|
|
primary: #387ef5,
|
|
secondary: #32db64,
|
|
danger: #f53d3d,
|
|
light: #f4f4f4,
|
|
dark: #222,
|
|
|
|
) !default;
|
|
|
|
|
|
$text-color: #000 !default;
|
|
$background-color: #fff !default;
|
|
$subdued-text-color: #666 !default;
|
|
|
|
$list-text-color: $text-color !default;
|
|
$list-background-color: $background-color !default;
|
|
$list-border-color: #c8c7cc !default;
|
|
|
|
$link-color: map-get($colors, primary) !default;
|
|
$link-hover-color: darken($link-color, 15%) !default;
|
|
|
|
$toolbar-background-color: #f8f8f8 !default;
|
|
$toolbar-border-color: #b2b2b2 !default;
|
|
$toolbar-text-color: $text-color !default;
|
|
$toolbar-active-color: $link-color !default;
|
|
$toolbar-inactive-color: #8c8c8c !default;
|