dotfiles/for-home-directory/.themes/Everblush-gtk-main/scss/gtk-3.0/widgets/_textview.scss
2022-12-20 11:40:25 -06:00

21 lines
344 B
SCSS
Executable file

@use '../colors';
textview {
transition: background 100ms ease-in-out;
background: transparentize(white, 0.95);
padding: 8px;
&:focus {
background: transparentize(white, 0.9);
}
&:disabled {
opacity: 0.3;
}
selection {
background: colors.$primary-accent;
color: lighten(colors.$foreground-color, 50%);
}
}