Skip to content

Latest commit

 

History

History
72 lines (47 loc) · 1.99 KB

README.md

File metadata and controls

72 lines (47 loc) · 1.99 KB

vimium-simply-dark

Dark theme for vimium chrome extension.

Screenshots

f Open links

o Vomnibar

/ Find

Installation

Copy and paste the vimium-simply-dark.css in Vimium settings.

Customization

You can customize the colors to your liking by changing the variables specified under /** Customizable Palette */.

Changing the accent color

/** Customizable Palette */
--accent: yellow;
--text: #fff;
--background: #444;

Making it darker

/** Customizable Palette */
--accent: hotpink;
--text: #fff;
--background: #111;

Transparency

/** Customizable Palette */
--accent: hotpink;
--text: #fff;
--background: rgb(30 30 30 / 90%);

Fancy

/** Customizable Palette */
--accent: mediumorchid;
--text: blue;
--background: pink;