Skip to content
This repository has been archived by the owner on Oct 18, 2024. It is now read-only.

Commit

Permalink
Added Minecraft Manipulator Branding
Browse files Browse the repository at this point in the history
  • Loading branch information
PiSaucer committed May 1, 2023
1 parent 57ea343 commit 221010a
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 12 deletions.
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# Legacy-Docs

Documentation about Minecraft: Legacy Console Edition with Vue Press

## To Build

```bash
yarn install
yarn docs:build
```
16 changes: 8 additions & 8 deletions docs/.vuepress/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { searchPlugin } from '@vuepress/plugin-search'
import sidebar from './sidebar';

let title = 'Minecraft Legacy Docs';
let description = 'Just playing around';
let description = 'Documentation about Minecraft: Legacy Console Edition';

export default {
base: '/Legacy-Docs/',
Expand All @@ -13,26 +13,26 @@ export default {
head: [
['meta', { charset: 'utf-8' }],
['meta', { name: 'viewport', content: 'width=device-width, initial-scale=1.0' }],
// ['link', { rel: 'icon', href: '/favicon.png' }],
['meta', { name: 'theme-color', content: '#27ae60' }],
['link', { rel: 'icon', href: '/favicon.png' }],
['meta', { name: 'theme-color', content: '#fa2426' }],
['meta', { name: 'twitter:card', content: 'summary' }],
['meta', { property: 'og:title', content: title }],
['meta', { property: 'og:description', content: description }],
['meta', { property: 'og:type', content: 'website' }],
// ['meta', { property: 'og:url', content: 'https://example.com/' }],
['meta', { property: 'og:url', content: 'https://minecraft-manipulator.github.io/Legacy-Docs/' }],
['meta', { property: 'og:locale', content: 'en_US' }],
// ['meta', { property: 'og:image', content: 'https://example.com/' }],
['meta', { property: 'og:image', content: 'https://minecraft-manipulator.github.io/Legacy-Docs/' }],
],
theme: defaultTheme({
sidebar,
contributors: true,
repo: 'ModifiedCommand/Legacy-Docs',
//logo: '/favicon.png',
repo: 'Minecraft-Manipulator/Legacy-Docs',
logo: '/favicon.png',
sidebarDepth: 2,
docsDir: 'docs',
editLink: true,
lastUpdated: true,
colorMode: 'dark'
colorMode: 'auto'
}),
plugins: [
searchPlugin({
Expand Down
Binary file added docs/.vuepress/public/favicon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
:root {
// brand colors
--c-brand: #27ae60;
--c-brand-light: #2ecc71;
--c-brand: #fa2426;
--c-brand-light: #f95c64;
}

html.dark {
// brand colors
--c-brand: #27ae60;
--c-brand-light: #2ecc71;
--c-brand: #fa2426;
--c-brand-light: #f95c64;

// background colors
--c-bg: #121212;
Expand Down

0 comments on commit 221010a

Please sign in to comment.