mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-26 10:21:52 +00:00
92 lines
2.7 KiB
SCSS
92 lines
2.7 KiB
SCSS
// Ionic Variables and Theming. For more info, please see:
|
|
// http://ionicframework.com/docs/theming/
|
|
|
|
/** Ionic CSS Variables **/
|
|
:root {
|
|
--ion-font-family: 'Benton Sans';
|
|
/** primary **/
|
|
--ion-color-primary: #428cff;
|
|
--ion-color-primary-rgb: 66,140,255;
|
|
--ion-color-primary-contrast: #ffffff;
|
|
--ion-color-primary-contrast-rgb: 255,255,255;
|
|
--ion-color-primary-shade: #3a7be0;
|
|
--ion-color-primary-tint: #5598ff;
|
|
|
|
/** secondary **/
|
|
--ion-color-secondary: #50c8ff;
|
|
--ion-color-secondary-rgb: 80,200,255;
|
|
--ion-color-secondary-contrast: #ffffff;
|
|
--ion-color-secondary-contrast-rgb: 255,255,255;
|
|
--ion-color-secondary-shade: #46b0e0;
|
|
--ion-color-secondary-tint: #62ceff;
|
|
|
|
/** tertiary **/
|
|
--ion-color-tertiary: #6a64ff;
|
|
--ion-color-tertiary-rgb: 106,100,255;
|
|
--ion-color-tertiary-contrast: #ffffff;
|
|
--ion-color-tertiary-contrast-rgb: 255,255,255;
|
|
--ion-color-tertiary-shade: #5d58e0;
|
|
--ion-color-tertiary-tint: #7974ff;
|
|
|
|
/** success **/
|
|
--ion-color-success: #2fdf75;
|
|
--ion-color-success-rgb: 47,223,117;
|
|
--ion-color-success-contrast: #000000;
|
|
--ion-color-success-contrast-rgb: 0,0,0;
|
|
--ion-color-success-shade: #29c467;
|
|
--ion-color-success-tint: #44e283;
|
|
|
|
/** warning **/
|
|
--ion-color-warning: #ffd534;
|
|
--ion-color-warning-rgb: 255,213,52;
|
|
--ion-color-warning-contrast: #000000;
|
|
--ion-color-warning-contrast-rgb: 0,0,0;
|
|
--ion-color-warning-shade: #e0bb2e;
|
|
--ion-color-warning-tint: #ffd948;
|
|
|
|
/** danger **/
|
|
--ion-color-danger: #ff4961;
|
|
--ion-color-danger-rgb: 255,73,97;
|
|
--ion-color-danger-contrast: #ffffff;
|
|
--ion-color-danger-contrast-rgb: 255,255,255;
|
|
--ion-color-danger-shade: #e04055;
|
|
--ion-color-danger-tint: #ff5b71;
|
|
|
|
/** dark **/
|
|
--ion-color-dark: #f4f5f8;
|
|
--ion-color-dark-rgb: 244,245,248;
|
|
--ion-color-dark-contrast: #000000;
|
|
--ion-color-dark-contrast-rgb: 0,0,0;
|
|
--ion-color-dark-shade: #d7d8da;
|
|
--ion-color-dark-tint: #f5f6f9;
|
|
|
|
/** medium **/
|
|
--ion-color-medium: #989aa2;
|
|
--ion-color-medium-rgb: 152,154,162;
|
|
--ion-color-medium-contrast: #000000;
|
|
--ion-color-medium-contrast-rgb: 0,0,0;
|
|
--ion-color-medium-shade: #86888f;
|
|
--ion-color-medium-tint: #a2a4ab;
|
|
|
|
/** light **/
|
|
--ion-color-light: #25272b;
|
|
--ion-color-light-rgb: 34,36,40;
|
|
--ion-color-light-contrast: #ffffff;
|
|
--ion-color-light-contrast-rgb: 255,255,255;
|
|
--ion-color-light-shade: #1e2023;
|
|
--ion-color-light-tint: #383a3e;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'Montserrat';
|
|
font-style: normal;
|
|
font-weight: normal;
|
|
src: url('../assets/fonts/Montserrat/Montserrat-Regular.ttf');
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'Benton Sans';
|
|
font-style: normal;
|
|
font-weight: normal;
|
|
src: url('../assets/fonts/Benton_Sans/BentonSans-Regular.otf');
|
|
} |