mirror of https://github.com/vuejs/vitepress
parent
5f57365edf
commit
afc40e61cd
@ -1,14 +1,45 @@
|
|||||||
.theme {
|
/** Base styles */
|
||||||
--border-color: rgb(226, 232, 240);
|
:root {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Colors
|
||||||
|
* --------------------------------------------------------------------- */
|
||||||
|
|
||||||
|
--c-white: #ffffff;
|
||||||
|
--c-black: #000000;
|
||||||
|
|
||||||
|
--c-divider-light: rgba(60, 60, 67, .12);
|
||||||
|
--c-divider-dark: rgba(84, 84, 88, .48);
|
||||||
|
|
||||||
|
--c-text-light-1: #2c3e50;
|
||||||
|
--c-text-light-2: #476582;
|
||||||
|
|
||||||
|
--c-brand: #3eaf7c;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Typography
|
||||||
|
* --------------------------------------------------------------------- */
|
||||||
|
|
||||||
|
--font-family-base: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Sizes
|
||||||
|
* --------------------------------------------------------------------- */
|
||||||
|
|
||||||
--header-height: 3.6rem;
|
--header-height: 3.6rem;
|
||||||
--sidebar-width: 16.4rem;
|
--sidebar-width: 16.4rem;
|
||||||
--text-color: #2c3e50;
|
}
|
||||||
--text-color-light: #476582;
|
|
||||||
|
/** Fallback Styles */
|
||||||
|
:root {
|
||||||
|
|
||||||
|
--c-divider: var(--c-divider-light);
|
||||||
|
|
||||||
|
--c-text: var(--c-text-light-1);
|
||||||
|
--c-text-light: var(--c-text-light-2);
|
||||||
|
|
||||||
|
--c-bg: var(--c-white);
|
||||||
|
|
||||||
--code-bg-color: #282c34;
|
--code-bg-color: #282c34;
|
||||||
--accent-color: #3eaf7c;
|
|
||||||
|
|
||||||
/* responsive breakpoints */
|
|
||||||
/* --mq-narrow: 959px; */
|
|
||||||
/* --mq-mobile: 719px; */
|
|
||||||
/* --mq-mobile-narrow: 419px; */
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in new issue