mirror of
https://github.com/Lissy93/dashy.git
synced 2025-01-01 13:32:35 +03:00
💄 Adds Adventure theme
This commit is contained in:
parent
453a3c107c
commit
a3bc07cc69
@ -1112,6 +1112,51 @@ html[data-theme="dashy-docs"] {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
html[data-theme="adventure"] {
|
||||||
|
// Main colors
|
||||||
|
--primary: #ffffffe6;
|
||||||
|
--background: #0b1021;
|
||||||
|
--background-darker: #181c3a;
|
||||||
|
// Typography
|
||||||
|
--font-headings: 'Podkova', 'Roboto', serif;
|
||||||
|
--font-body: 'Roboto', serif;
|
||||||
|
// Items
|
||||||
|
--item-background: #181c3a66;
|
||||||
|
--item-background-hover: #181c3a80;
|
||||||
|
--item-shadow: 1px 1px 2px #130f23;
|
||||||
|
--item-hover-shadow: 2px 2px 4px #130f23;
|
||||||
|
// Sections
|
||||||
|
--item-group-heading-text-color: var(--white);
|
||||||
|
--item-group-heading-text-color-hover: var(--primary);
|
||||||
|
--item-group-shadow: none;
|
||||||
|
--item-group-background: none;
|
||||||
|
--item-group-outer-background: none;
|
||||||
|
// Background Image
|
||||||
|
body {
|
||||||
|
background: url('https://i.ibb.co/wdqSsGh/adventure-bg.jpg');
|
||||||
|
background-size: cover;
|
||||||
|
}
|
||||||
|
// Remove background from certain components
|
||||||
|
div.home, div.options-outer, div.options-container, section.filter-container,
|
||||||
|
section.settings-outer, div.show-hide-container.hide-btn, div.show-hide-container.show-btn {
|
||||||
|
background: none;
|
||||||
|
}
|
||||||
|
// Style overides
|
||||||
|
label.lbl-toggle h3 { font-size: 1.3rem; font-weight: bold; }
|
||||||
|
.content-inner { border-top: 1px dashed var(--primary); }
|
||||||
|
a.item.size-large:hover { border-left: 3px solid var(--white); }
|
||||||
|
.item.size-large .tile-title p.description { height: 3rem; }
|
||||||
|
.is-collapsed {
|
||||||
|
background: var(--item-background);
|
||||||
|
box-shadow: var(--item-shadow);
|
||||||
|
&:hover {
|
||||||
|
background: var(--item-background-hover);
|
||||||
|
box-shadow: var(--item-hover-shadow);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
html[data-theme="oblivion-blue"] {
|
html[data-theme="oblivion-blue"] {
|
||||||
--primary: #82a5f3;
|
--primary: #82a5f3;
|
||||||
}
|
}
|
||||||
|
@ -50,13 +50,14 @@ module.exports = {
|
|||||||
'oblivion',
|
'oblivion',
|
||||||
'material',
|
'material',
|
||||||
'material-dark',
|
'material-dark',
|
||||||
'dracula',
|
|
||||||
'colorful',
|
|
||||||
'dashy-docs',
|
'dashy-docs',
|
||||||
|
'colorful',
|
||||||
|
'dracula',
|
||||||
|
'adventure',
|
||||||
'minimal-dark',
|
'minimal-dark',
|
||||||
'minimal-light',
|
'minimal-light',
|
||||||
'nord',
|
|
||||||
'nord-frost',
|
'nord-frost',
|
||||||
|
'nord',
|
||||||
'thebe',
|
'thebe',
|
||||||
'cyberpunk',
|
'cyberpunk',
|
||||||
'matrix',
|
'matrix',
|
||||||
|
Loading…
Reference in New Issue
Block a user