noicss.reset
Version:
reset / normalize by noicss. In modern vanilla CSS.
40 lines (28 loc) • 601 B
Markdown
<h1 align="center">
noicss.reset
</h1>
<p align="center">
A modern reset / normalize by noicss.
</p>
## Installation:
```Shell
npm install noicss.reset
```
## Usage:
import it into your CSS file:
```CSS
@layer reset, main;
@import url("noicss.reset") layer(reset);
/* YOUR OWN CSS: */
@layer main {
:root {
/* CUSTOMIZATION (the following values are the defaults): */
--accentColor: magenta;
--outlineColor: var(--accentColor);
--caretColor: var(--accentColor);
--highlightedTextColor: currentcolor;
--highlightedTextBgColor: var(--accentColor);
}
}
```