mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
Issue number: Internal --------- <!-- Please do not submit updates to dependencies unless it fixes an issue. --> <!-- Please try to limit your pull request to one type (bugfix, feature, etc). Submit multiple pull requests if needed. --> ## What is the current behavior? <!-- Please describe the current behavior that you are modifying. --> Ionic's proposed color palette for dark theme is not WCAG AA compliant. ## What is the new behavior? <!-- Please describe the behavior or changes that are being added by this PR. --> - Updates the dark theme (`dark.css`) file with the proposed color palette for Level AA color contrast compliance. - Adds tests for verifying color contrast requirements for the following cases: - Base color on dark theme background (`#00000` on iOS an `#121212` on MD) - Contrast color on base color - Base color on base color with 0.08 opacity - Base color on base color with 0.12 opacity - Base color on base color with 0.16 opacity ## Does this introduce a breaking change? - [ ] Yes - [x] No <!-- If this introduces a breaking change, please describe the impact and migration path for existing applications below. --> ## Other information <!-- Any other information that is important to this PR such as screenshots of how the component looks before and after the change. --> --------- Co-authored-by: Brandy Carney <brandy@ionic.io>
152 lines
4.1 KiB
CSS
152 lines
4.1 KiB
CSS
/*
|
|
* Dark Colors
|
|
* -------------------------------------------
|
|
*/
|
|
|
|
:root {
|
|
--ion-color-primary: #4d8dff;
|
|
--ion-color-primary-rgb: 77, 141, 255;
|
|
--ion-color-primary-contrast: #000000;
|
|
--ion-color-primary-contrast-rgb: 0, 0, 0;
|
|
--ion-color-primary-shade: #447ce0;
|
|
--ion-color-primary-tint: #5f98ff;
|
|
|
|
--ion-color-secondary: #62bdff;
|
|
--ion-color-secondary-rgb: 98, 189, 255;
|
|
--ion-color-secondary-contrast: #000000;
|
|
--ion-color-secondary-contrast-rgb: 0, 0, 0;
|
|
--ion-color-secondary-shade: #56a6e0;
|
|
--ion-color-secondary-tint: #72c4ff;
|
|
|
|
--ion-color-tertiary: #8482fb;
|
|
--ion-color-tertiary-rgb: 132, 130, 251;
|
|
--ion-color-tertiary-contrast: #000000;
|
|
--ion-color-tertiary-contrast-rgb: 0, 0, 0;
|
|
--ion-color-tertiary-shade: #7472dd;
|
|
--ion-color-tertiary-tint: #908ffb;
|
|
|
|
--ion-color-success: #2dd55b;
|
|
--ion-color-success-rgb: 45, 213, 91;
|
|
--ion-color-success-contrast: #000000;
|
|
--ion-color-success-contrast-rgb: 0, 0, 0;
|
|
--ion-color-success-shade: #28bb50;
|
|
--ion-color-success-tint: #42d96b;
|
|
|
|
--ion-color-warning: #ffce31;
|
|
--ion-color-warning-rgb: 255, 206, 49;
|
|
--ion-color-warning-contrast: #000000;
|
|
--ion-color-warning-contrast-rgb: 0, 0, 0;
|
|
--ion-color-warning-shade: #e0b52b;
|
|
--ion-color-warning-tint: #ffd346;
|
|
|
|
--ion-color-danger: #f56570;
|
|
--ion-color-danger-rgb: 245, 101, 112;
|
|
--ion-color-danger-contrast: #000000;
|
|
--ion-color-danger-contrast-rgb: 0, 0, 0;
|
|
--ion-color-danger-shade: #d85963;
|
|
--ion-color-danger-tint: #f6747e;
|
|
|
|
--ion-color-dark: #f3f3f3;
|
|
--ion-color-dark-rgb: 243, 243, 243;
|
|
--ion-color-dark-contrast: #000000;
|
|
--ion-color-dark-contrast-rgb: 0, 0, 0;
|
|
--ion-color-dark-shade: #d6d6d6;
|
|
--ion-color-dark-tint: #f4f4f4;
|
|
|
|
--ion-color-medium: #959595;
|
|
--ion-color-medium-rgb: 149, 149, 149;
|
|
--ion-color-medium-contrast: #000000;
|
|
--ion-color-medium-contrast-rgb: 0, 0, 0;
|
|
--ion-color-medium-shade: #838383;
|
|
--ion-color-medium-tint: #a0a0a0;
|
|
|
|
--ion-color-light: #2f2f2f;
|
|
--ion-color-light-rgb: 47, 47, 47;
|
|
--ion-color-light-contrast: #ffffff;
|
|
--ion-color-light-contrast-rgb: 255, 255, 255;
|
|
--ion-color-light-shade: #292929;
|
|
--ion-color-light-tint: #444444;
|
|
}
|
|
|
|
/*
|
|
* iOS Dark Theme
|
|
* -------------------------------------------
|
|
*/
|
|
|
|
.ios body {
|
|
--ion-background-color: #000000;
|
|
--ion-background-color-rgb: 0, 0, 0;
|
|
|
|
--ion-text-color: #ffffff;
|
|
--ion-text-color-rgb: 255, 255, 255;
|
|
|
|
--ion-color-step-50: #0d0d0d;
|
|
--ion-color-step-100: #1a1a1a;
|
|
--ion-color-step-150: #262626;
|
|
--ion-color-step-200: #333333;
|
|
--ion-color-step-250: #404040;
|
|
--ion-color-step-300: #4d4d4d;
|
|
--ion-color-step-350: #595959;
|
|
--ion-color-step-400: #666666;
|
|
--ion-color-step-450: #737373;
|
|
--ion-color-step-500: #808080;
|
|
--ion-color-step-550: #8c8c8c;
|
|
--ion-color-step-600: #999999;
|
|
--ion-color-step-650: #a6a6a6;
|
|
--ion-color-step-700: #b3b3b3;
|
|
--ion-color-step-750: #bfbfbf;
|
|
--ion-color-step-800: #cccccc;
|
|
--ion-color-step-850: #d9d9d9;
|
|
--ion-color-step-900: #e6e6e6;
|
|
--ion-color-step-950: #f2f2f2;
|
|
|
|
--ion-toolbar-background: #0d0d0d;
|
|
|
|
--ion-item-background: #000000;
|
|
|
|
--ion-card-background: #1c1c1d;
|
|
}
|
|
|
|
/*
|
|
* Material Design Dark Theme
|
|
* -------------------------------------------
|
|
*/
|
|
|
|
.md body {
|
|
--ion-background-color: #121212;
|
|
--ion-background-color-rgb: 18, 18, 18;
|
|
|
|
--ion-text-color: #ffffff;
|
|
--ion-text-color-rgb: 255, 255, 255;
|
|
|
|
--ion-border-color: #222222;
|
|
|
|
--ion-color-step-50: #1e1e1e;
|
|
--ion-color-step-100: #2a2a2a;
|
|
--ion-color-step-150: #363636;
|
|
--ion-color-step-200: #414141;
|
|
--ion-color-step-250: #4d4d4d;
|
|
--ion-color-step-300: #595959;
|
|
--ion-color-step-350: #656565;
|
|
--ion-color-step-400: #717171;
|
|
--ion-color-step-450: #7d7d7d;
|
|
--ion-color-step-500: #898989;
|
|
--ion-color-step-550: #949494;
|
|
--ion-color-step-600: #a0a0a0;
|
|
--ion-color-step-650: #acacac;
|
|
--ion-color-step-700: #b8b8b8;
|
|
--ion-color-step-750: #c4c4c4;
|
|
--ion-color-step-800: #d0d0d0;
|
|
--ion-color-step-850: #dbdbdb;
|
|
--ion-color-step-900: #e7e7e7;
|
|
--ion-color-step-950: #f3f3f3;
|
|
|
|
--ion-item-background: #1e1e1e;
|
|
|
|
--ion-toolbar-background: #1f1f1f;
|
|
|
|
--ion-tab-bar-background: #1f1f1f;
|
|
|
|
--ion-card-background: #1e1e1e;
|
|
}
|