abapGit/src/ui/zabapgit_css_theme_belize_blue.w3mi.data.css
Fabian Lupa 7f04d59bf9 Belize theme (#2733)
* Add Belize theme

* Implement polyfill for CSS variables

* Fix CSS variables with spaces in values

* Always load default theme and add others on top

* Adjust theme CSS for use with variables

* Support variables referencing variables in CSS

* Adjust themes

* Add font size to theme

* Skip asset registration for unused themes

* Unify theme greyscale

* Refactor CSS preprocessor

* Refactor CSS preprocessor, add basic tests

* Fix linter issues

* Always load theme asset

Otherwise switching does not work
2019-06-25 03:02:40 -07:00

36 lines
1.4 KiB
CSS

/*
* ABAPGIT THEME CSS - BELIZE BLUE
*/
/* https://experience.sap.com/fiori-design-web/colors/ */
:root {
--fiori-color-global-light-base: #EFF4F9; /* Background in SAP GUI */
--fiori-color-gui-tab-background: #FCFDFE; /* Tabstrip background */
--fiori-color-gui-container-border: #D1E0EE;
--fiori-color-gui-uneditable-background: #F2F2F2; /* Textbox not editable */
--fiori-color-gui-editable-background: #FFFFFF; /* Textbox editable */
--fiori-color-font-primary: #333333; /* Grayscale 1 */
--fiori-color-font-secondary: #666666; /* Grayscale 2 */
--fiori-color-font-highlighted: #003D84;
--fiori-color-message-box-background: #2F3C48; /* Bottom message container */
--theme-background-color: var(--fiori-color-global-light-base);
--theme-container-background-color: var(--fiori-color-gui-tab-background);
--theme-primary-font: "72", Arial, Helvetica, sans-serif;
--theme-primary-font-color: var(--fiori-color-font-primary);
--theme-primary-font-color-reduced: var(--fiori-color-font-secondary);
--theme-font-size: 11pt;
--theme-link-color: var(--fiori-color-font-highlighted);
--theme-container-border-color: var(--fiori-color-gui-container-border);
--theme-table-border-color: #E5E5E5; /* ALV border color */
--theme-greyscale-dark: #666666;
--theme-greyscale-medium: #BFBFBF;
--theme-greyscale-light: #CCCCCC;
--theme-greyscale-lighter: #E5E5E5;
}
#header a, #header a:visited {
color: #346187;
}