35 lines
913 B
Plaintext
35 lines
913 B
Plaintext
@import "colors.rasi"
|
|
|
|
* {
|
|
// Rofi Color Mappings — Light Material Theme
|
|
|
|
background: rgba(255, 255, 255, 0.96); /* almost pure white */
|
|
foreground: @inverse-on-surface;
|
|
|
|
primary: @inverse-primary;
|
|
accent: @secondary-fixed-dim;
|
|
on-primary: @on-primary-fixed;
|
|
|
|
primary-fixed: @primary-fixed;
|
|
on-primary-fixed: @on-primary-fixed;
|
|
|
|
selection: rgba(35, 100, 136, 0.15);
|
|
on-selection: @on-primary-fixed;
|
|
|
|
error: @error-container;
|
|
on-error: @on-error-container;
|
|
|
|
surface: rgba(255, 255, 255, 0.98); /* white surface cards */
|
|
on-surface: @inverse-on-surface;
|
|
|
|
outline: @outline;
|
|
shadow: rgba(0, 0, 0, 0.12);
|
|
|
|
highlight: @primary;
|
|
|
|
prompt: @outline;
|
|
placeholder: @outline;
|
|
}
|
|
|
|
|