Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Themefix build #48

Closed
wants to merge 12 commits into from
9 changes: 0 additions & 9 deletions docs/develop/wasmedge/features.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,12 +74,3 @@ Or you could build your own plugins for WasmEdge in C++, C, or Rust (WIP).
## Easy to Embed into a Host Application

Embedded runtime is the classical use case for WasmEdge. You could embed WasmEdge functions in C, Go, Rust, Node.js, Java (WIP), and Python (WIP) host applications.









100 changes: 27 additions & 73 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

38 changes: 23 additions & 15 deletions src/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,25 +6,33 @@

/* You can override the default Infima variables here. */
:root {
--ifm-color-primary: #2e8555;
--ifm-color-primary-dark: #29784c;
--ifm-color-primary-darker: #277148;
--ifm-color-primary-darkest: #205d3b;
--ifm-color-primary-light: #33925d;
--ifm-color-primary-lighter: #359962;
--ifm-color-primary-lightest: #3cad6e;

--ifm-navbar-link-hover-color: #1A73E8;
--ifm-footer-link-hover-color: #6495fd;
--ifm-menu-color-active: #20609f;
--ifm-link-color:#20609f;
--ifm-breadcrumb-color-active: #4973e8;
--ifm-color-primary: #c350ba;
--ifm-color-primary-dark: #c350ba;
--ifm-color-primary-darker: #c350ba;
--ifm-color-primary-darkest: #c350ba;
--ifm-color-primary-light: #c350ba;
--ifm-color-primary-lighter: #c350ba;
--ifm-color-primary-lightest: #c350ba;
--ifm-code-font-size: 95%;
--docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.1);
}

/* For readability concerns, you should choose a lighter palette in dark mode. */
[data-theme='dark'] {
--ifm-color-primary: #25c2a0;
--ifm-color-primary-dark: #21af90;
--ifm-color-primary-darker: #1fa588;
--ifm-color-primary-darkest: #1a8870;
--ifm-color-primary-light: #29d5b0;
--ifm-color-primary-lighter: #32d8b4;
--ifm-color-primary-lightest: #4fddbf;
--ifm-navbar-link-hover-color: #6495fd;
--ifm-footer-link-hover-color: #6495fd;
--ifm-color-primary: #d693e1;
--ifm-color-primary-dark: #c97fd6;
--ifm-color-primary-darker: #b56bca;
--ifm-color-primary-darkest: #a357be;
--ifm-color-primary-light: #e1b6ec;
--ifm-color-primary-lighter: #e8c3f0;
--ifm-color-primary-lightest: #f2dfff;
--docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.3);
}
}