feat(theme): add styles for dark and light themes
This commit is contained in:
19
src/view/styles/base_dark.css
Normal file
19
src/view/styles/base_dark.css
Normal file
@@ -0,0 +1,19 @@
|
||||
textview {
|
||||
border-radius: 7px;
|
||||
padding: 7px 8px;
|
||||
background: rgba(90, 90, 90, 0.5);
|
||||
outline-offset: 2px;
|
||||
outline: 2px solid #81ABDF00;
|
||||
transition-duration: .15s;
|
||||
transition-timing-function: ease-in-out;
|
||||
}
|
||||
textview:focus-within {
|
||||
outline-offset: -2px;
|
||||
outline: 2px solid #81ABDF;
|
||||
}
|
||||
revealer#infobar > box {
|
||||
padding: 8px;
|
||||
border-spacing: 12px;
|
||||
border-bottom: 1px solid lighten(darken(#f6f5f4, 10%), 5%);
|
||||
background-color: #4a351b;
|
||||
}
|
||||
Reference in New Issue
Block a user