https://github.com/lisniuse/vuepress-theme-thindark
A dark theme for VuePress.
https://github.com/lisniuse/vuepress-theme-thindark
vuepress vuepress-doc vuepress-theme vuepress-theme-thindark
Last synced: about 1 month ago
JSON representation
A dark theme for VuePress.
- Host: GitHub
- URL: https://github.com/lisniuse/vuepress-theme-thindark
- Owner: lisniuse
- License: mit
- Created: 2019-07-10T08:52:49.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2019-07-11T10:10:05.000Z (almost 6 years ago)
- Last Synced: 2025-03-02T13:17:55.000Z (about 2 months ago)
- Topics: vuepress, vuepress-doc, vuepress-theme, vuepress-theme-thindark
- Language: Vue
- Homepage:
- Size: 28.3 KB
- Stars: 25
- Watchers: 0
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# vuepress-theme-thindark
[](https://www.npmjs.com/package/vuepress-theme-thindark)
[](https://github.com/lisniuse/vuepress-theme-thindark/blob/master/LICENSE)
[](https://github.com/prettier/prettier)> A dark theme for VuePress. (It is remodeled from the [default theme](https://v1.vuepress.vuejs.org/theme/default-theme-config.html) and is compatible with all configurations of the default theme.)
[Live demo](https://lisniuse.github.io/vuepress-theme-thindark-demo/)
## Built With
- [Node.js](https://nodejs.org/)
- [VuePress](https://github.com/vuejs/vuepress)## Prerequisites
There are some global dependencies you need to set up.
- [Node.js](https://nodejs.org/)
- [VuePress](https://github.com/vuejs/vuepress)## Getting Started
### Installing
```bash
# Install vuepress
yarn global add vuepress # OR npm install -g vuepress# Install theme
yarn global add vuepress-theme-thindark # OR npm install -g vuepress-theme-thindark
```### Configuration
Create VuePress config file `.vuepress/config.js` and provide a `theme` option.
```js
// .vuepress/config.js
module.exports = {
title: 'Hello, World.',
description: 'Dark theme for VuePress.',
theme: 'thindark',
}
```### As Easy as 1, 2, 3
```bash
# Create a markdown file and write something
echo '# Hello, World.' > Hello.md# Start writing
vuepress dev .# Build to static files
vuepress build .
```## How to use?
Go to [docs](https://lisniuse.github.io/vuepress-theme-thindark-demo/) to get more details.