Dark Style
Simple plugin when install the cursor will change into the black one
by Mahmoud Hosny · github.com/mahoembaby/dark-cursor · website
★ 0stars
0forks
Install
No release zip yet. The repository archive installs, but the folder name will carry the branch suffix and updates will not flow:
wp plugin install https://github.com/mahoembaby/dark-cursor/archive/refs/heads/main.zipReadme
Plugin: Dark Style
This plugin change style of cursor and scrollbar and selection of website.
1. Custom Cursor
we use the custom cursor arrowhead.svg icon with black color
cursor: url("./arrowhead.svg"), auto;
2. Scrollbar
We change the static scrollbar of the website with two main colors:
- Shark [ #202222 ]
- Cape Cod [ #464a4a ]
we make the width and height of the scrollbar with 8px
*::-webkit-scrollbar {
height: 8px;
width: 8px;
}
*::-webkit-scrollbar-track {
border-radius: 0px;
background-color: #202222;
}
*::-webkit-scrollbar-track:hover {
background-color: #202222;
}
*::-webkit-scrollbar-track:active {
background-color: #202222;
}
*::-webkit-scrollbar-thumb {
border-radius: 7px;
background-color: #464a4a;
}
*::-webkit-scrollbar-thumb:hover {
background-color: #464a4a;
}
*::-webkit-scrollbar-thumb:active {
background-color: #464a4a;
}
3. Seclection
We change the selection background color and the text color by these two color.
::selection {
background-color: #202222;
color: bisque;
}
Thank you for reading my document of the plugin.
My Webstie: Visit from here