Custom Theme / Styles
CSS Injection
Inject custom CSS code into the document to achieve customized styling.
- The example below demonstrates changing some fonts, background colors, and font sizes (use
!important
if the cascading styles don’t take effect). - Open Developer Tools. Requires Clash Verge Rev version v1.5.8 or above.
INFO
- This tutorial assumes some basic CSS knowledge. You can refer to the CSS documentation.
- If images are too small to see clearly, right-click and open them in a new tab. Please be patient if the image files are large.
CSS Example Code
css
span {
font-family: "YouYuan" !important;
}
header p {
background-color: red !important;
font-size: 58px !important;
}