From 69d45d9d772b39c67a30113f9b03c7e4b04950b0 Mon Sep 17 00:00:00 2001 From: dragonwocky Date: Fri, 14 Aug 2020 23:18:38 +1000 Subject: [PATCH] pastel dark theme + custom author definitions --- DOCUMENTATION.md | 39 +++++++--- mods/bracketed-links/mod.js | 2 +- mods/core/css/dark.css | 39 ++++++++++ mods/core/css/light.css | 39 ++++++++++ mods/core/css/localised.css | 4 + mods/core/css/menu.css | 4 +- mods/core/css/variables.css | 10 ++- mods/core/css/variables.json | 4 + mods/core/menu.js | 18 +++-- mods/custom-inserts/mod.js | 2 +- mods/dark+/mod.js | 2 +- mods/dark+/styles.css | 4 + mods/focus-mode/mod.js | 2 +- mods/gameish/mod.js | 11 ++- mods/gameish/styles.css | 10 ++- mods/neutral/mod.js | 2 +- mods/neutral/styles.css | 8 +- mods/pastel-dark/mod.js | 22 ++++++ mods/pastel-dark/styles.css | 138 +++++++++++++++++++++++++++++++++++ pkg/helpers.js | 1 + 20 files changed, 328 insertions(+), 33 deletions(-) create mode 100644 mods/pastel-dark/mod.js create mode 100644 mods/pastel-dark/styles.css diff --git a/DOCUMENTATION.md b/DOCUMENTATION.md index 1bf0ce0..e033195 100644 --- a/DOCUMENTATION.md +++ b/DOCUMENTATION.md @@ -40,7 +40,11 @@ module.exports = { tags?: Array of categories, desc: String of markdown, version: String of semver, - author: String of github_username, + author: String of github_username OR { + name: String of author_name, + link: String of url, + avatar: String of image_source, + }, options?: Array<{ key: String, label: String, @@ -53,16 +57,29 @@ module.exports = { }; ``` -| key | value | type | -| ------- | ----------------------------------------------------------------------------------------------- | ----------------- | -| id | **required:** uuidv4 | _string_ | -| name | **required:** short name (e.g. 'frameless window') | _string_ | -| tags | **required:** categories/type (e.g. 'extension', 'theme', 'light', 'dark') | _array\_ | -| desc | **optional:** 1-3 sentence description of what the module is/does, with basic markdown support. | _string_ | -| version | **required:** semver (e.g. '0.3.7') | _string_ | -| author | **required:** github username | _string_ | -| options | **optional:** see below: options made available in the enhancer menu (accessible from the tray) | _array\_ | -| hacks | **optional:** see below: code inserted at various points | _object_ | +| key | value | type | +| ------- | ----------------------------------------------------------------------------------------------- | ---------------------- | +| id | **required:** uuidv4 | _string_ | +| name | **required:** short name (e.g. `'ocean theme'`) | _string_ | +| tags | **required:** categories/type (e.g. `'extension'`, `'theme'`, `'light'`, `'dark'`) | _array\_ | +| desc | **optional:** 1-3 sentence description of what the module is/does, with basic markdown support. | _string_ | +| version | **required:** semver (e.g. `'0.3.7'`) | _string_ | +| author | **required:** see below: original extension creator | _string_ or \ | +| options | **optional:** see below: options made available in the enhancer menu (accessible from the tray) | _array\_ | +| hacks | **optional:** see below: code inserted at various points | _object_ | + +#### author + +by default this is assumed to be a github username: just pass it as a string and +the link/avatar will be automatically found. + +if you'd rather customise this, pass this object: + +| key | value | type | +| ------ | ------------------------------------------ | -------- | +| name | **required:** author's (your?) name | _string_ | +| link | **required:** link to the author's profile | _string_ | +| avatar | **required:** url for the author's avatar | _string_ | #### options diff --git a/mods/bracketed-links/mod.js b/mods/bracketed-links/mod.js index a92597d..551e979 100644 --- a/mods/bracketed-links/mod.js +++ b/mods/bracketed-links/mod.js @@ -11,6 +11,6 @@ module.exports = { tags: ['extension'], name: 'bracketed links', desc: 'render links surrounded with [[brackets]] instead of __underlined__.', - version: '0.0.1', + version: '0.1.0', author: 'arecsu', }; diff --git a/mods/core/css/dark.css b/mods/core/css/dark.css index 5dc1df7..edea597 100644 --- a/mods/core/css/dark.css +++ b/mods/core/css/dark.css @@ -170,6 +170,7 @@ .notion-dark-theme [style*='background: rgba(151, 154, 155, 0.5)'], .notion-dark-theme [style*='background:rgb(69,75,78)'] { background: var(--theme_dark--bg_gray) !important; + color: var(--theme_dark--bg_text) !important; } .notion-dark-theme [style*='background: rgb(69, 75, 78)'] { background: var(--theme_dark--line_gray) !important; @@ -180,6 +181,7 @@ .notion-dark-theme [style*='background: rgba(147, 114, 100, 0.5)'], .notion-dark-theme [style*='background:rgb(67,64,64)'] { background: var(--theme_dark--bg_brown) !important; + color: var(--theme_dark--bg_text) !important; } .notion-dark-theme [style*='background: rgb(67, 64, 64)'] { background: var(--theme_dark--line_brown) !important; @@ -190,6 +192,7 @@ .notion-dark-theme [style*='background: rgba(255, 163, 68, 0.5)'], .notion-dark-theme [style*='background:rgb(89,74,58)'] { background: var(--theme_dark--bg_orange) !important; + color: var(--theme_dark--bg_text) !important; } .notion-dark-theme [style*='background: rgb(89, 74, 58)'] { background: var(--theme_dark--line_orange) !important; @@ -200,6 +203,7 @@ .notion-dark-theme [style*='background: rgba(255, 220, 73, 0.5)'], .notion-dark-theme [style*='background:rgb(89,86,59)'] { background: var(--theme_dark--bg_yellow) !important; + color: var(--theme_dark--bg_text) !important; } .notion-dark-theme [style*='background: rgb(89, 86, 59)'] { background: var(--theme_dark--line_yellow) !important; @@ -210,6 +214,7 @@ .notion-dark-theme [style*='background: rgba(77, 171, 154, 0.5)'], .notion-dark-theme [style*='background:rgb(53,76,75)'] { background: var(--theme_dark--bg_green) !important; + color: var(--theme_dark--bg_text) !important; } .notion-dark-theme [style*='background: rgb(53, 76, 75)'] { background: var(--theme_dark--line_green) !important; @@ -220,6 +225,7 @@ .notion-dark-theme [style*='background: rgba(82, 156, 202, 0.5)'], .notion-dark-theme [style*='background:rgb(54,73,84)'] { background: var(--theme_dark--bg_blue) !important; + color: var(--theme_dark--bg_text) !important; } .notion-dark-theme [style*='background: rgb(54, 73, 84)'] { background: var(--theme_dark--line_blue) !important; @@ -230,6 +236,7 @@ .notion-dark-theme [style*='background: rgba(154, 109, 215, 0.5)'], .notion-dark-theme [style*='background:rgb(68,63,87)'] { background: var(--theme_dark--bg_purple) !important; + color: var(--theme_dark--bg_text) !important; } .notion-dark-theme [style*='background: rgb(68, 63, 87)'] { background: var(--theme_dark--line_purple) !important; @@ -240,6 +247,7 @@ .notion-dark-theme [style*='background: rgba(226, 85, 161, 0.5)'], .notion-dark-theme [style*='background:rgb(83,59,76)'] { background: var(--theme_dark--bg_pink) !important; + color: var(--theme_dark--bg_text) !important; } .notion-dark-theme [style*='background: rgb(83, 59, 76)'] { background: var(--theme_dark--line_pink) !important; @@ -250,11 +258,42 @@ .notion-dark-theme [style*='background: rgba(255, 115, 105, 0.5);'], .notion-dark-theme [style*='background:rgb(89,65,65)'] { background: var(--theme_dark--bg_red) !important; + color: var(--theme_dark--bg_text) !important; } .notion-dark-theme [style*='background: rgb(89, 65, 65)'] { background: var(--theme_dark--line_red) !important; } +.notion-dark-theme + [style*='background: rgb(69, 75, 78)'] + [style*='color: rgba(255, 255, 255, 0.9)'], +.notion-dark-theme + [style*='background: rgb(67, 64, 64)'] + [style*='color: rgba(255, 255, 255, 0.9)'], +.notion-dark-theme + [style*='background: rgb(89, 74, 58)'] + [style*='color: rgba(255, 255, 255, 0.9)'], +.notion-dark-theme + [style*='background: rgb(89, 86, 59)'] + [style*='color: rgba(255, 255, 255, 0.9)'], +.notion-dark-theme + [style*='background: rgb(53, 76, 75)'] + [style*='color: rgba(255, 255, 255, 0.9)'], +.notion-dark-theme + [style*='background: rgb(54, 73, 84)'] + [style*='color: rgba(255, 255, 255, 0.9)'], +.notion-dark-theme + [style*='background: rgb(68, 63, 87)'] + [style*='color: rgba(255, 255, 255, 0.9)'], +.notion-dark-theme + [style*='background: rgb(83, 59, 76)'] + [style*='color: rgba(255, 255, 255, 0.9)'], +.notion-dark-theme + [style*='background: rgb(89, 65, 65)'] + [style*='color: rgba(255, 255, 255, 0.9)'] { + color: var(--theme_dark--line_text) !important; +} + /* code */ .notion-dark-theme [style*='color:#EB5757'] { diff --git a/mods/core/css/light.css b/mods/core/css/light.css index 4cc43ea..b72ab69 100644 --- a/mods/core/css/light.css +++ b/mods/core/css/light.css @@ -178,6 +178,7 @@ .notion-light-theme [style*='background: rgba(140, 46, 0, 0.2)'], .notion-light-theme [style*='background:rgb(235,236,237)'] { background: var(--theme_light--bg_gray) !important; + color: var(--theme_light--bg_text) !important; } .notion-light-theme [style*='background: rgb(235, 236, 237)'] { background: var(--theme_light--line_gray) !important; @@ -188,6 +189,7 @@ .notion-light-theme [style*='background: rgba(140, 46, 0, 0.2)'], .notion-light-theme [style*='background:rgb(233,229,227)'] { background: var(--theme_light--bg_brown) !important; + color: var(--theme_light--bg_text) !important; } .notion-light-theme [style*='background: rgb(233, 229, 227)'] { background: var(--theme_light--line_brown) !important; @@ -198,6 +200,7 @@ .notion-light-theme [style*='background: rgba(245, 93, 0, 0.2)'], .notion-light-theme [style*='background:rgb(250,235,221)'] { background: var(--theme_light--bg_orange) !important; + color: var(--theme_light--bg_text) !important; } .notion-light-theme [style*='background: rgb(250, 235, 221)'] { background: var(--theme_light--line_orange) !important; @@ -208,6 +211,7 @@ .notion-light-theme [style*='background: rgba(233, 168, 0, 0.2)'], .notion-light-theme [style*='background:rgb(251,243,219)'] { background: var(--theme_light--bg_yellow) !important; + color: var(--theme_light--bg_text) !important; } .notion-light-theme [style*='background: rgb(251, 243, 219)'] { background: var(--theme_light--line_yellow) !important; @@ -218,6 +222,7 @@ .notion-light-theme [style*='background: rgba(0, 135, 107, 0.2)'], .notion-light-theme [style*='background:rgb(221,237,234)'] { background: var(--theme_light--bg_green) !important; + color: var(--theme_light--bg_text) !important; } .notion-light-theme [style*='background: rgb(221, 237, 234)'] { background: var(--theme_light--line_green) !important; @@ -228,6 +233,7 @@ .notion-light-theme [style*='background: rgba(0, 120, 223, 0.2)'], .notion-light-theme [style*='background:rgb(221,235,241)'] { background: var(--theme_light--bg_blue) !important; + color: var(--theme_light--bg_text) !important; } .notion-light-theme [style*='background: rgb(221, 235, 241)'] { background: var(--theme_light--line_blue) !important; @@ -238,6 +244,7 @@ .notion-light-theme [style*='background: rgba(103, 36, 222, 0.2)'], .notion-light-theme [style*='background:rgb(234,228,242)'] { background: var(--theme_light--bg_purple) !important; + color: var(--theme_light--bg_text) !important; } .notion-light-theme [style*='background: rgb(234, 228, 242)'] { background: var(--theme_light--line_purple) !important; @@ -248,6 +255,7 @@ .notion-light-theme [style*='background: rgba(221, 0, 129, 0.2)'], .notion-light-theme [style*='background:rgb(244,223,235)'] { background: var(--theme_light--bg_pink) !important; + color: var(--theme_light--bg_text) !important; } .notion-light-theme [style*='background: rgb(244, 223, 235)'] { background: var(--theme_light--line_pink) !important; @@ -258,11 +266,42 @@ .notion-light-theme [style*='background: rgba(255, 0, 26, 0.2)'], .notion-light-theme [style*='background:rgb(251,228,228)'] { background: var(--theme_light--bg_red) !important; + color: var(--theme_light--bg_text) !important; } .notion-light-theme [style*='background: rgb(251, 228, 228)'] { background: var(--theme_light--line_red) !important; } +.notion-light-theme + [style*='background: rgb(235, 236, 237)'] + [style*='color: rgb(55, 53, 47);'], +.notion-light-theme + [style*='background: rgb(233, 229, 227)'] + [style*='color: rgb(55, 53, 47);'], +.notion-light-theme + [style*='background: rgb(250, 235, 221)'] + [style*='color: rgb(55, 53, 47);'], +.notion-light-theme + [style*='background: rgb(251, 243, 219)'] + [style*='color: rgb(55, 53, 47);'], +.notion-light-theme + [style*='background: rgb(221, 237, 234)'] + [style*='color: rgb(55, 53, 47);'], +.notion-light-theme + [style*='background: rgb(221, 235, 241)'] + [style*='color: rgb(55, 53, 47);'], +.notion-light-theme + [style*='background: rgb(234, 228, 242)'] + [style*='color: rgb(55, 53, 47);'], +.notion-light-theme + [style*='background: rgb(244, 223, 235)'] + [style*='color: rgb(55, 53, 47);'], +.notion-light-theme + [style*='background: rgb(251, 228, 228)'] + [style*='color: rgb(55, 53, 47);'] { + color: var(--theme_light--line_text) !important; +} + /* code */ .notion-light-theme [style*='color:#EB5757'] { diff --git a/mods/core/css/localised.css b/mods/core/css/localised.css index 16709b9..160603e 100644 --- a/mods/core/css/localised.css +++ b/mods/core/css/localised.css @@ -66,6 +66,7 @@ --theme--text_purple: var(--theme_dark--text_purple); --theme--text_pink: var(--theme_dark--text_pink); --theme--text_red: var(--theme_dark--text_red); + --theme--bg_text: var(--theme_dark--bg_text); --theme--bg_gray: var(--theme_dark--bg_gray); --theme--bg_brown: var(--theme_dark--bg_brown); --theme--bg_orange: var(--theme_dark--bg_orange); @@ -75,6 +76,7 @@ --theme--bg_purple: var(--theme_dark--bg_purple); --theme--bg_pink: var(--theme_dark--bg_pink); --theme--bg_red: var(--theme_dark--bg_red); + --theme--line_text: var(--theme_dark--line_text); --theme--line_gray: var(--theme_dark--line_gray); --theme--line_brown: var(--theme_dark--line_brown); --theme--line_orange: var(--theme_dark--line_orange); @@ -164,6 +166,7 @@ --theme--text_purple: var(--theme_light--text_purple); --theme--text_pink: var(--theme_light--text_pink); --theme--text_red: var(--theme_light--text_red); + --theme--bg_text: var(--theme_light--bg_text); --theme--bg_gray: var(--theme_light--bg_gray); --theme--bg_brown: var(--theme_light--bg_brown); --theme--bg_orange: var(--theme_light--bg_orange); @@ -173,6 +176,7 @@ --theme--bg_purple: var(--theme_light--bg_purple); --theme--bg_pink: var(--theme_light--bg_pink); --theme--bg_red: var(--theme_light--bg_red); + --theme--line_text: var(--theme_light--line_text); --theme--line_gray: var(--theme_light--line_gray); --theme--line_brown: var(--theme_light--line_brown); --theme--line_orange: var(--theme_light--line_orange); diff --git a/mods/core/css/menu.css b/mods/core/css/menu.css index 7583cf8..bcd6713 100644 --- a/mods/core/css/menu.css +++ b/mods/core/css/menu.css @@ -133,13 +133,13 @@ s { font-weight: bold; font-size: 1.2em; padding-right: 0.5rem; - color: var(--theme--text_ui_info); + color: var(--theme--bg_text); } #alerts [role='alert'] p { font-size: 1rem; margin: auto 0; padding-left: 0.5em; - color: var(--theme--text_ui); + color: var(--theme--bg_text); } #alerts .error { diff --git a/mods/core/css/variables.css b/mods/core/css/variables.css index f21f4a9..7854438 100644 --- a/mods/core/css/variables.css +++ b/mods/core/css/variables.css @@ -79,6 +79,8 @@ --theme_dark--text_purple: rgb(154, 109, 215); --theme_dark--text_pink: rgb(226, 85, 161); --theme_dark--text_red: rgb(255, 115, 105); + + --theme_dark--bg_text: var(--theme_dark--text); --theme_dark--bg_gray: rgba(151, 154, 155, 0.5); --theme_dark--bg_brown: rgba(147, 114, 100, 0.5); --theme_dark--bg_orange: rgba(255, 163, 68, 0.5); @@ -88,6 +90,8 @@ --theme_dark--bg_purple: rgba(154, 109, 215, 0.5); --theme_dark--bg_pink: rgba(226, 85, 161, 0.5); --theme_dark--bg_red: rgba(255, 115, 105, 0.5); + + --theme_dark--line_text: var(--theme_dark--text); --theme_dark--line_gray: rgb(69, 75, 78); --theme_dark--line_brown: rgb(67, 64, 64); --theme_dark--line_orange: rgb(89, 74, 58); @@ -188,6 +192,8 @@ --theme_light--text_purple: rgb(105, 64, 165); --theme_light--text_pink: rgb(173, 26, 114); --theme_light--text_red: rgb(224, 62, 62); + + --theme_light--bg_text: var(--theme_light--text); --theme_light--bg_gray: rgb(235, 236, 237); --theme_light--bg_brown: rgb(233, 229, 227); --theme_light--bg_orange: rgb(250, 235, 221); @@ -197,13 +203,15 @@ --theme_light--bg_purple: rgb(234, 228, 242); --theme_light--bg_pink: rgb(244, 223, 235); --theme_light--bg_red: rgb(251, 228, 228); + + --theme_light--line_text: var(--theme_light--text); --theme_light--line_gray: rgb(235, 236, 237); --theme_light--line_brown: rgb(233, 229, 227); --theme_light--line_orange: rgb(250, 235, 221); --theme_light--line_yellow: rgb(251, 243, 219); --theme_light--line_green: rgb(221, 237, 234); --theme_light--line_blue: rgb(221, 235, 241); - --theme_light--line_purple: rgb(105, 64, 165); + --theme_light--line_purple: rgb(234, 228, 242); --theme_light--line_pink: rgb(244, 223, 235); --theme_light--line_red: rgb(251, 228, 228); diff --git a/mods/core/css/variables.json b/mods/core/css/variables.json index 19e7fd4..da593b8 100644 --- a/mods/core/css/variables.json +++ b/mods/core/css/variables.json @@ -54,6 +54,7 @@ "--theme_dark--text_purple", "--theme_dark--text_pink", "--theme_dark--text_red", + "--theme_dark--bg_text", "--theme_dark--bg_gray", "--theme_dark--bg_brown", "--theme_dark--bg_orange", @@ -63,6 +64,7 @@ "--theme_dark--bg_purple", "--theme_dark--bg_pink", "--theme_dark--bg_red", + "--theme_dark--line_text", "--theme_dark--line_gray", "--theme_dark--line_brown", "--theme_dark--line_orange", @@ -145,6 +147,7 @@ "--theme_light--text_purple", "--theme_light--text_pink", "--theme_light--text_red", + "--theme_light--bg_text", "--theme_light--bg_gray", "--theme_light--bg_brown", "--theme_light--bg_orange", @@ -154,6 +157,7 @@ "--theme_light--bg_purple", "--theme_light--bg_pink", "--theme_light--bg_red", + "--theme_light--line_text", "--theme_light--line_gray", "--theme_light--line_brown", "--theme_light--line_orange", diff --git a/mods/core/menu.js b/mods/core/menu.js index 542fc11..4f0f3e1 100644 --- a/mods/core/menu.js +++ b/mods/core/menu.js @@ -373,7 +373,15 @@ window['__start'] = async () => { ? 1 : a.name.localeCompare(b.name) )) { - const menuStore = store('mods', { [mod.id]: { enabled: false } }); + const menuStore = store('mods', { [mod.id]: { enabled: false } }), + author = + typeof mod.author === 'object' + ? mod.author + : { + name: mod.author, + link: `https://github.com/${mod.author}`, + avatar: `https://github.com/${mod.author}.png`, + }; mod.elem = createElement(`