Skip to content

Latest commit

 

History

History
62 lines (45 loc) · 1.87 KB

themes.md

File metadata and controls

62 lines (45 loc) · 1.87 KB

Themes

Es gibt im Moment vier Themes zur Auswahl, ähnlich wie die Webseiten von Vue oder buble, sowie eine weitere, dunkle von @liril-net.

<link rel="stylesheet" href="//unpkg.com/docsify/themes/vue.css">
<link rel="stylesheet" href="//unpkg.com/docsify/themes/buble.css">
<link rel="stylesheet" href="//unpkg.com/docsify/themes/dark.css">
<link rel="stylesheet" href="//unpkg.com/docsify/themes/pure.css">

!> Komprimierte Dateien sind über /lib/themes/ verfügbar.

<!-- komprimierte Versionen -->

<link rel="stylesheet" href="//unpkg.com/docsify/lib/themes/vue.css">
<link rel="stylesheet" href="//unpkg.com/docsify/lib/themes/buble.css">
<link rel="stylesheet" href="//unpkg.com/docsify/lib/themes/dark.css">
<link rel="stylesheet" href="//unpkg.com/docsify/lib/themes/pure.css">

Solltest du weitere Themes erstellen, kannst du sie gerne der Allgemeinheit mit einem pull request zur Verfügung stellen.

Klicke hier für eine Vorschau

vue.css buble.css dark.css pure.css
<style> .demo-theme-preview a { padding-right: 10px; } .demo-theme-preview a:hover { cursor: pointer; text-decoration: underline; } </style> <script> var preview = Docsify.dom.find('.demo-theme-preview'); var themes = Docsify.dom.findAll('[rel="stylesheet"]'); preview.onclick = function (e) { var title = e.target.getAttribute('data-theme') themes.forEach(function (theme) { theme.disabled = theme.title !== title }); }; </script>

Andere themes