docs(moonwave): include customized moonwave configs

This commit is contained in:
Erica Marigold 2024-04-16 16:11:23 +05:30
parent 6b30f08388
commit 4c7a4ee0fd
No known key found for this signature in database
GPG key ID: 2768CC0C23D245D1
4 changed files with 68 additions and 1 deletions

42
.moonwave/custom.css Normal file
View file

@ -0,0 +1,42 @@
@import url("https://Cinnab0nBak3ry.github.io/AppleFontsCSS/Apple-fonts.css");
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&display=swap');
:root {
--ifm-color-primary: #cba6f7;
--ifm-color-primary-dark: #b580f4;
--ifm-color-primary-darker: #aa6df2;
--ifm-color-primary-darkest: #8934ed;
--ifm-color-primary-light: #e1ccfa;
--ifm-color-primary-lighter: #ecdffc;
--ifm-color-primary-lightest: #ffffff;
--ifm-footer-color: ##a6adc8;
--ifm-footer-background-color: #45475a;
--ifm-font-family-base: "SF Pro Display";
--ifm-font-family-monospace: "JetBrains Mono";
--ifm-font-family-monospace: "JetBrains Mono";
--ifm-code-font-size: 80%;
}
/* Catppuccin Mocha from https://github.com/catppuccin/catppuccin?tab=readme-ov-file#-palette */
[data-theme='dark']:root {
--ifm-color-scheme: dark;
--ifm-background-color: #1e1e2e;
--ifm-background-surface-color: #313244;
--ifm-color-black: #11111b;
--ifm-font-color-base: #cdd6f4;
}
/*
TODO: Light theme catppuccin latte
[data-theme='light']:root {
--ifm-color-scheme: light;
--ifm-background-color: ##eff1f5;
--ifm-background-surface-color: #ccd0da;
--ifm-color-white: #e6e9ef;
--ifm-font-color-base: ##4c4f69;
}
*/

BIN
.moonwave/static/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 50 KiB

View file

@ -63,7 +63,8 @@ export type Status = "initialized" | "pending" | "cancelled" | "ready"
@interface Future<T> @interface Future<T>
@within Future @within Future
This is a dictionary that may contain one or more of the following values: Represents the internal state of a [Future].
@field _thread thread -- The background coroutine spawned for execution @field _thread thread -- The background coroutine spawned for execution
@field _ret T -- The value returned once execution has halted @field _ret T -- The value returned once execution has halted
@field _spawnEvt Signal<()> -- Event for internal communication among threads pre execution @field _spawnEvt Signal<()> -- Event for internal communication among threads pre execution

24
moonwave.toml Normal file
View file

@ -0,0 +1,24 @@
title = "rusty-luau"
gitRepoUrl = "https://github.com/CompeyDev/rusty-luau"
gitSourceBranch = "main"
changelog = true
[docusaurus]
onBrokenLinks = "throw"
onBrokenMarkdownLinks = "warn"
favicon = "/logo.png"
organizationName = "CompeyDev"
url = "https://rusty-luau.devcomp.xyz"
baseUrl = "/"
tagline = "Strongly typed implementations of various rust idioms in luau."
# TODO: Disable theme toggle
# [docusaurus.themeConfig.colorMode]
# defaultMode = "dark"
# disableSwitch = true
# respectPrefersColorScheme = false
[footer]
style = "light"
copyright = "Copyright © 2021 Erica Marigold."