Make Nord default theme, update solarized
This commit is contained in:
@@ -41,7 +41,7 @@ export let highlight = false
|
||||
<style>
|
||||
.expandable {
|
||||
text-decoration: none;
|
||||
background-color: var(--popout_color);
|
||||
background-color: var(--card_color);
|
||||
margin: 0.6em 0;
|
||||
border-radius: 6px;
|
||||
overflow: hidden;
|
||||
|
@@ -87,7 +87,7 @@ const keydown = e => {
|
||||
left: 50%;
|
||||
transform: translate(-50%, -20%);
|
||||
padding: 0;
|
||||
border-radius: 20px 20px 16px 16px;
|
||||
border-radius: 20px 20px 12px 12px;
|
||||
overflow: hidden;
|
||||
text-align: left;
|
||||
}
|
||||
|
@@ -14,15 +14,30 @@ let set = s => {
|
||||
<button class:button_highlight={theme===""} on:click={() => {set("")}}>
|
||||
None
|
||||
</button>
|
||||
<button class:button_highlight={theme==="default"} on:click={() => {set("default")}}>
|
||||
Default (purple)
|
||||
<button class="group_first" class:button_highlight={theme==="nord"} on:click={() => {set("nord")}}>
|
||||
Nord
|
||||
</button>
|
||||
<button class="group_middle" class:button_highlight={theme==="nord_dark"} on:click={() => {set("nord_dark")}}>
|
||||
dark
|
||||
</button>
|
||||
<button class="group_last" class:button_highlight={theme==="nord_light"} on:click={() => {set("nord_light")}}>
|
||||
light
|
||||
</button>
|
||||
<button class="group_first" class:button_highlight={theme==="solarized"} on:click={() => {set("solarized")}}>
|
||||
Solarized
|
||||
</button>
|
||||
<button class="group_middle" class:button_highlight={theme==="solarized_dark"} on:click={() => {set("solarized_dark")}}>
|
||||
dark
|
||||
</button>
|
||||
<button class="group_last" class:button_highlight={theme==="solarized_light"} on:click={() => {set("solarized_light")}}>
|
||||
light
|
||||
</button>
|
||||
<button class:button_highlight={theme==="purple_drain"} on:click={() => {set("purple_drain")}}>
|
||||
Purple drain
|
||||
</button>
|
||||
<button class:button_highlight={theme==="classic"} on:click={() => {set("classic")}}>
|
||||
Classic
|
||||
</button>
|
||||
<button class:button_highlight={theme==="solarized_dark"} on:click={() => {set("solarized_dark")}}>
|
||||
Solarized
|
||||
</button>
|
||||
<button class:button_highlight={theme==="maroon"} on:click={() => {set("maroon")}}>
|
||||
Maroon
|
||||
</button>
|
||||
@@ -32,15 +47,6 @@ let set = s => {
|
||||
<button class:button_highlight={theme==="canta"} on:click={() => {set("canta")}}>
|
||||
Canta
|
||||
</button>
|
||||
<button class:button_highlight={theme==="nord"} on:click={() => {set("nord")}}>
|
||||
Nord (dynamic)
|
||||
</button>
|
||||
<button class:button_highlight={theme==="nord_dark"} on:click={() => {set("nord_dark")}}>
|
||||
Nord (dark)
|
||||
</button>
|
||||
<button class:button_highlight={theme==="nord_light"} on:click={() => {set("nord_light")}}>
|
||||
Nord (light)
|
||||
</button>
|
||||
<button class:button_highlight={theme==="skeuos"} on:click={() => {set("skeuos")}}>
|
||||
Skeuos
|
||||
</button>
|
||||
|
Reference in New Issue
Block a user