CSS style of wleave.
See https://github.com/AMNatty/wleave#styling for the documentation.
If the value is set to a path literal, then the path will be used as the css file.
Declarations
Type
null or absolute path or strings concatenated with "\n"Default
nullExample
''
window {
background-color: rgba(12, 12, 12, 0.8);
}
button {
color: var(--view-fg-color);
background-color: var(--view-bg-color);
border: none;
padding: 10px;
}
button:hover,
button:focus {
color: var(--accent-color);
background-color: var(--window-bg-color);
}
''