Files
pezkuwi-fellows/mdbook/theme/polkadot.css
T
Przemek Rzad f94ab697e5 Introduce RFC mdBook web page (#60)
- Closes https://github.com/polkadot-fellows/RFCs/issues/53
- Preview available [here](https://paritytech.github.io/RFCs/).

![Screenshot 2023-12-19 at 13 55
05](https://github.com/polkadot-fellows/RFCs/assets/12039224/ee06a7ad-231e-4077-a773-c6319661dfb6)


---

### What it does

- The workflow gathers the source markdown files of RFCs - approved
ones, and proposed ones (from open PRs).
- The proposed RFCs are separated into new (<7 days since PR created)
and stale (>30 days since PR updated).
- The RFCs are extended with a table of contents, and a link to the
source.
- The RFCs are build into a web page using
[mdBook](https://github.com/rust-lang/mdBook).
- The built web page gets pushed to `gh-pages` branch - to be published
in Github Pages.
- The workflow is triggered on merge to `main`, and periodically once a
day.
2024-01-03 20:05:00 +01:00

71 lines
1.6 KiB
CSS

html.polkadot {
font-family: "Open Sans", sans-serif;
}
.polkadot {
--pink500: #E6007A;
--purple600: #442299;
--purple500: #552BBF;
--purple400: #6D3AEE;
--cyan700: #0094D4;
--cyan600: #00A6ED;
--cyan500: #00B2FF;
--green700: #48CC81;
--green600: #51E591;
--green500: #56F39A;
--lime700: #A9CC29;
--lime600: #BEE52E;
--lime500: #D3FF33;
--purple700: #321D47;
--purple800: #28123E;
--purple900: #1C0533;
--purple300: #DAE0F2;
--purple200: #E6EAF6;
--purple100: #F3F5FB;
--bg: var(--purple100);
--fg: #262625;
--sidebar-bg: var(--purple800);
--sidebar-fg: #c8c9db;
--sidebar-non-existant: #505254;
--sidebar-active: var(--pink500);
--sidebar-spacer: var(--purple700);
--scrollbar: var(--sidebar-fg);
--icons: #737480;
--icons-hover: #262625;
--links: #2b79a2;
--inline-code-color: #6e6b5e;
--theme-popup-bg: var(--purple200);
--theme-popup-border: var(--purple300);
--theme-hover: var(--purple200);
--quote-bg: var(--purple200);
--quote-border: var(--purple300);
--warning-border: #ff8e00;
--table-border-color: var(--purple200);
--table-header-bg: var(--purple300);
--table-alternate-bg: var(--purple200);
--searchbar-border-color: #aaa;
--searchbar-bg: #fafafa;
--searchbar-fg: #000;
--searchbar-shadow-color: #aaa;
--searchresults-header-fg: #666;
--searchresults-border-color: #888;
--searchresults-li-bg: #dec2a2;
--search-mark-bg: var(--cyan500);
--color-scheme: light;
}