mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-23 05:58:26 +08:00

aligned title and back button, increased font size of back icon, removed color shade from toolbar buttons, increased font weight of title, changed primary color, reduced back button text letter spacing. Fixes #5149
34 lines
1002 B
SCSS
34 lines
1002 B
SCSS
|
|
// Default Theme
|
|
// ----------------------------------
|
|
|
|
$colors: (
|
|
|
|
primary: #327eff,
|
|
secondary: #32db64,
|
|
danger: #f53d3d,
|
|
light: #f4f4f4,
|
|
dark: #222,
|
|
|
|
) !default;
|
|
|
|
|
|
$text-color: #000 !default;
|
|
$paragraph-color: $text-color !default;
|
|
$link-color: map-get($colors, primary) !default;
|
|
$background-color: #fff !default;
|
|
$subdued-text-color: #666 !default;
|
|
|
|
$font-family-base: -apple-system, "Helvetica Neue", "Roboto", sans-serif !default;
|
|
$font-size-base: 1.4rem !default; // 1.4rem == 14px
|
|
|
|
$toolbar-background: #f8f8f8 !default;
|
|
$toolbar-border-color: #b2b2b2 !default;
|
|
$toolbar-text-color: $text-color !default;
|
|
$toolbar-active-color: $link-color !default;
|
|
$toolbar-inactive-color: #8c8c8c !default;
|
|
|
|
$list-text-color: $text-color !default;
|
|
$list-background-color: $background-color !default;
|
|
$list-border-color: #c8c7cc !default;
|