vuepress-reco / vuepress-theme-reco

🎨 This is the repo for vuepress-theme-reco 2.
https://vuepress-theme-reco.recoluan.com
MIT License
538 stars 173 forks source link

怎么自定义主题颜色呢 #253

Closed bean4896 closed 7 months ago

bean4896 commented 7 months ago

:root { --link-color-light: #8B0000;
--link-color-dark: #FFA07A;
}

@media (prefers-color-scheme: light) { :root { --linkColor: var(--link-color-light); } }

@media (prefers-color-scheme: dark) { :root { --linkColor: var(--link-color-dark); } }

a { color: var(--linkColor); }

我在styles>index.css 加这些做一个尝试 没有用

wstee commented 7 months ago

https://vuepress-theme-reco.recoluan.com/docs/theme/custom-primary-color.html