mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-15 06:06:35 +08:00
251d7c44d1
* Initial commit * SVG-based graph components * Add histogram, pull data into graphs * Loading animation, timespan descriptions * Improvements to read receipt / link tracking section * Initial pass at subject line analysis * Fixes to subject-line stats * Fix theme `ui-variables` include paths * Add “Share this report” button * Add “Learn More” button * Make it more clear how to edit your shortcuts * Merge activity-list and new activity-dashboard, move in sidebar
24 lines
810 B
Text
24 lines
810 B
Text
// All themes need a file called `ui-variables` that extends from the base
|
|
// variables and overrides colors, padding, etc. Other plugins import
|
|
// `ui-variables` to make their custom CSS react to the current theme.
|
|
@import 'base/ui-variables';
|
|
|
|
@import 'variables';
|
|
|
|
@accent-primary: @taiga-light;
|
|
@accent-primary-dark: darken(@taiga-light, 20%);
|
|
|
|
@background-secondary: @white;
|
|
@text-color: @taiga-dark;
|
|
@text-color-subtle: lighten(@taiga-dark, 20%);
|
|
@text-color-very-subtle: @taiga-light;
|
|
@text-color-inverse: @taiga-light;
|
|
@text-color-inverse-subtle: darken(@taiga-light, 30%);
|
|
@text-color-inverse-very-subtle: darken(@taiga-light, 20%);
|
|
|
|
@panel-background-color: @white;
|
|
@toolbar-background-color: @white;
|
|
|
|
@btn-default-bg-color: @white;
|
|
@btn-default-text-color: @taiga-light;
|
|
@background-gradient: none;
|