From 515e9cabc21b4ab4aedd95a524c7ecf7528c7a0a Mon Sep 17 00:00:00 2001 From: antelle Date: Tue, 1 Dec 2020 19:54:17 +0100 Subject: [PATCH] theme-darker --- docs/plugins/theme-darker/index.html | 22 ++++++++++++++++++++++ docs/plugins/theme-darker/manifest.json | 22 ++++++++++++++++++++++ docs/plugins/theme-darker/plugin.css | 20 ++++++++++++++++++++ 3 files changed, 64 insertions(+) create mode 100644 docs/plugins/theme-darker/index.html create mode 100644 docs/plugins/theme-darker/manifest.json create mode 100644 docs/plugins/theme-darker/plugin.css diff --git a/docs/plugins/theme-darker/index.html b/docs/plugins/theme-darker/index.html new file mode 100644 index 0000000..7d76005 --- /dev/null +++ b/docs/plugins/theme-darker/index.html @@ -0,0 +1,22 @@ + + + + + KeeWeb Plugin: Darker Theme + + + + +

KeeWeb Plugin: Darker Theme

+ + https://plugins.keeweb.info/plugins/theme-darker + +

It looks like the default Dark theme, but with darker colors.

+ + diff --git a/docs/plugins/theme-darker/manifest.json b/docs/plugins/theme-darker/manifest.json new file mode 100644 index 0000000..5ae6834 --- /dev/null +++ b/docs/plugins/theme-darker/manifest.json @@ -0,0 +1,22 @@ +{ + "version": "0.0.1", + "manifestVersion": "0.1.0", + "versionMin": "1.16.0", + "name": "theme-darker", + "description": "Darker Theme", + "author": { + "name": "KeeWeb", + "email": "antelle.net@gmail.com", + "url": "https://keeweb.info" + }, + "resources": { + "css": "QKfTau6vGoFnHZd6ID3j3FolZ+6S+WGouviYTNEHjGryiSDXvGxIYci5J/voejn8WCRHMU5uZcu1hEYVOm+fp7C45AgiDZyPQZs10zGENWXfbfxn0dM1gOTKnowI4w7PE2LC551YzWv1wt9APZxzuV1roA8i0tcldzcJ3bGxezO+w3msSSjslMx5pKoq2XYRYR+5/A5VGXyfG6r/gvB44vdeN3jjHOgF2idIpOGKDmd6FXN9srasAHtZBI7acAn8e8+pzt4uqAnESojEKT19Y3gEwZ9GiiEfd3HwPmFEoQxDPoEitu8r8ayPhySSriWS5G0XPs2DSuHNPL9M84GQ+w==" + }, + "url": "https://plugins.keeweb.info/plugins/theme-darker", + "publicKey": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAnRq2k3TTx0ewTe6wDr6QVeB5diwiIWzsJD+ApfZu1KNPedcAgslAfjpNsYF1if6cYsPMJH70xJ2np6RQBl1VPdwShOuxkD7m0BD5Hw/Aar8Hdp5cvAdOOMdBO+0DbGeUMy+z66s+oUCJmqVp19T6PkkxbhN08rgtT7v+aFvrbqbO/vlsskbJpH2K2io+e1XmRGPnSr9q4KSqfGbTfe5gLwDIOFd66Z4mb5Utb5wWpsy6Gjh06Yf257AccGD3A1bkTNOyeeX0tqciYBePWMk0icP/aZ6hnErfhnUKf3tOgPLppSHiGcaSKekhChZ2xLUs3U64JwrXSmwHj+TzdO3S0QIDAQAB", + "license": "MIT", + "theme": { + "name": "darker", + "title": "Darker" + } +} diff --git a/docs/plugins/theme-darker/plugin.css b/docs/plugins/theme-darker/plugin.css new file mode 100644 index 0000000..48b1f0f --- /dev/null +++ b/docs/plugins/theme-darker/plugin.css @@ -0,0 +1,20 @@ +.th-darker { + --background-color: #1c1c1c; + --medium-color: #b7b7b8; + --text-color: #f7f7f7; + --action-color: #317ef6; + --error-color: #ec655a; + + --form-box-border-color-focus: #407091; + --form-box-shadow-color-focus: #3a698b; + --form-box-shadow-color-hover: rgba(58, 105, 139, 0.8); + --light-border-color: rgba(68, 68, 69, 0.6); + --secondary-background-color: transparent; + --selected-item-color: #2463c8; + --selected-on-secondary-item-color: #3a383a; + --selectable-on-secondary-item-color: #272627; +} + +.th-darker .list__item--active .blue-color { + color: #689ff7; +}