mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-02-01 21:07:59 +08:00
65 lines
1.4 KiB
Text
65 lines
1.4 KiB
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';
|
|
|
|
@accent-primary: #f07746;
|
|
@accent-primary-dark: darken(#f07746, 1%);
|
|
|
|
@border-color-divider: #e2e2e2;
|
|
@border-color-secondary: lighten(@background-secondary, 10%);
|
|
|
|
@toolbar-background-color: #41403b;
|
|
@light: rgb(246, 246, 246);
|
|
|
|
.sheet-toolbar .btn-toolbar img.content-mask {
|
|
background-color: @light;
|
|
}
|
|
|
|
.sheet-toolbar-container {
|
|
background-image: -webkit-linear-gradient(
|
|
top,
|
|
@toolbar-background-color,
|
|
darken(@toolbar-background-color, 5%)
|
|
);
|
|
box-shadow: none;
|
|
.btn {
|
|
background: lighten(@toolbar-background-color, 4%);
|
|
}
|
|
.btn.btn-toolbar {
|
|
color: @light;
|
|
}
|
|
.toolbar-activity .activity-toolbar-icon {
|
|
background: @light;
|
|
}
|
|
}
|
|
|
|
.sheet-toolbar .item-back img.content-mask {
|
|
background-color: @light;
|
|
}
|
|
|
|
.sheet-toolbar .item-back .item-back-title {
|
|
color: @light;
|
|
}
|
|
|
|
.sheet-toolbar .selection-bar {
|
|
.absolute {
|
|
border-color: lighten(@toolbar-background-color, 5%);
|
|
background-color: darken(@toolbar-background-color, 8%);
|
|
|
|
.inner {
|
|
.centered {
|
|
color: @light;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.btn-icon img.content-mask {
|
|
background-color: @light;
|
|
color: @light;
|
|
}
|
|
|
|
.btn-icon img.content-mask:hover {
|
|
background-color: @accent-primary;
|
|
}
|