From 53362a4ceee9fd9e30c59acaf53f64e41d0cde1e Mon Sep 17 00:00:00 2001 From: dragonwocky Date: Wed, 28 Dec 2022 00:41:24 +1100 Subject: [PATCH] feat: --theme--bg-overlay variable, style menu modal w/ variables --- scripts/generate-theme-css.mjs | 14 +- src/core/client.css | 9 +- src/core/client.mjs | 13 +- src/core/theme.css | 1997 +++++++++++++++++++++++++++++++- src/core/theming/patches.css | 253 ---- src/core/variables.css | 12 + 6 files changed, 2032 insertions(+), 266 deletions(-) delete mode 100644 src/core/theming/patches.css diff --git a/scripts/generate-theme-css.mjs b/scripts/generate-theme-css.mjs index 69f1b35..056eea1 100644 --- a/scripts/generate-theme-css.mjs +++ b/scripts/generate-theme-css.mjs @@ -333,7 +333,8 @@ const generateBackgroundStyles = () => { ...(darkMode ? ["rgba(255, 255, 255, 0.0", "rgb(47, 47, 47)"] : ["rgb(253, 253, 253)", "rgb(15, 15, 15)"]), - ]); + ]), + bgOverlay = darkMode ? "rgba(15, 15, 15, 0.8)" : "rgba(15, 15, 15, 0.6)"; for (const el of document.querySelectorAll( '[style*="background:"], [style*="background-color:"]' )) { @@ -350,6 +351,7 @@ const generateBackgroundStyles = () => { cssRoot += ` --theme--bg-primary: ${defaultPrimary}; --theme--bg-secondary: ${defaultSecondary}; + --theme--overlay-shadow: ${bgOverlay}; `; const mapBgToSelectors = (colorVal) => `.notion-body${modeSelector} [style*="background:${colorVal}"], @@ -360,7 +362,8 @@ const generateBackgroundStyles = () => { ${[...bgPrimary].map(mapBgToSelectors).join(", ")} { background: var(--theme--bg-primary, ${defaultPrimary}) !important; } - .notion-body${modeSelector} .notion-focusable-within [style*="background"], + .notion-body${modeSelector} .notion-focusable-within + [style*="background"]:not([style*="background: none"]), ${[...bgSecondary].map(mapBgToSelectors).join(", ")} { background: var(--theme--bg-secondary, ${defaultSecondary}) !important; } @@ -376,6 +379,10 @@ const generateBackgroundStyles = () => { background-image: linear-gradient(to right, var(--theme--bg-primary, ${defaultPrimary}) 20%, transparent 100%) !important; } + .notion-body${modeSelector} .notion-overlay-container + [data-overlay] > div > [style*="position: absolute"]:first-child { + background: var(--theme--overlay-shadow, ${bgOverlay}) !important; + } `; // hovered elements, inputs and unchecked toggle backgrounds @@ -662,7 +669,8 @@ const generateScrollbarStyles = () => { --theme--scrollbar-thumb: ${scrollbarThumb}; --theme--scrollbar-thumb_hover: ${scrollbarThumbHover};`; cssBody += ` - .notion-body${modeSelector} ::-webkit-scrollbar-track { + .notion-body${modeSelector} ::-webkit-scrollbar-track, + .notion-body${modeSelector} ::-webkit-scrollbar-corner { background: var(--theme--scrollbar-track, ${scrollbarTrack}) !important; } .notion-body${modeSelector} ::-webkit-scrollbar-thumb { diff --git a/src/core/client.css b/src/core/client.css index 630e7dc..9c8a44d 100644 --- a/src/core/client.css +++ b/src/core/client.css @@ -4,6 +4,7 @@ * (https://notion-enhancer.github.io/) under the MIT license */ +@import url("./variables.css"); @import url("./theme.css"); .notion-enhancer--menu-button { @@ -17,7 +18,7 @@ padding: 2px 10px; } .notion-enhancer--menu-button:hover { - background: rgba(255, 255, 255, 0.055); + background: var(--theme--bg-hover); } .notion-enhancer--menu-button > :nth-child(1) { display: flex; @@ -37,6 +38,8 @@ opacity: 0; pointer-events: none; transition: opacity 100ms ease-in; + /* style="display:none" is set to prevent pop-in fouc */ + display: auto !important; } .notion-enhancer--menu-modal[data-open="true"] { pointer-events: auto; @@ -45,7 +48,7 @@ .notion-enhancer--menu-modal > :nth-child(1) { position: fixed; inset: 0; - background: rgba(15, 15, 15, 0.8); + background: var(--theme--bg-overlay); } .notion-enhancer--menu-modal > :nth-child(2) { position: fixed; @@ -58,7 +61,7 @@ pointer-events: none; } .notion-enhancer--menu-modal > :nth-child(2) > iframe { - background: rgb(32, 32, 32); + background: var(--theme--bg-secondary); box-shadow: rgba(15, 15, 15, 0.1) 0px 0px 0px 1px, rgba(15, 15, 15, 0.2) 0px 5px 10px, rgba(15, 15, 15, 0.4) 0px 15px 40px; border-radius: 5px; diff --git a/src/core/client.mjs b/src/core/client.mjs index 47cbb05..d09e565 100644 --- a/src/core/client.mjs +++ b/src/core/client.mjs @@ -15,8 +15,11 @@ export default async () => { menuButtonIconStyle === "monochrome" ? "?mask" : " text-[16px]" }`; - const modalBackground = html`
-
modalBackground.removeAttribute("data-open")}>
+ const menuModal = html``; - document.body.append(modalBackground); + document.body.append(menuModal); const notionSidebar = `.notion-sidebar-container .notion-sidebar > :nth-child(3) > div > :nth-child(2)`, menuButton = html`
{ - modalBackground.dataset.open = true; - }} + onclick=${() => menuModal.setAttribute("data-open", true)} >
notion-enhancer
diff --git a/src/core/theme.css b/src/core/theme.css index 2c3655a..b81c74b 100644 --- a/src/core/theme.css +++ b/src/core/theme.css @@ -4,4 +4,1999 @@ * (https://notion-enhancer.github.io/) under the MIT license */ -.notion-body:not(.dark) [style*=" color: rgb(24, 51, 71)"],.notion-body:not(.dark) [style*=" color: rgb(28, 56, 41)"],.notion-body:not(.dark) [style*=" color: rgb(50, 48, 44)"],.notion-body:not(.dark) [style*=" color: rgb(55, 53, 47)"],.notion-body:not(.dark) [style*=" color: rgb(64, 44, 27)"],.notion-body:not(.dark) [style*=" color: rgb(65, 36, 84)"],.notion-body:not(.dark) [style*=" color: rgb(68, 42, 30)"],.notion-body:not(.dark) [style*=" color: rgb(73, 41, 14)"],.notion-body:not(.dark) [style*=" color: rgb(76, 35, 55)"],.notion-body:not(.dark) [style*=" color: rgb(93, 23, 21)"],.notion-body:not(.dark) [style*=" color: rgba(255, 255, 255, 0.9)"],.notion-body:not(.dark) [style*=" color: rgba(55, 53, 47, 0.85)"],.notion-body:not(.dark) [style*=" color:rgb(24, 51, 71)"],.notion-body:not(.dark) [style*=" color:rgb(28, 56, 41)"],.notion-body:not(.dark) [style*=" color:rgb(50, 48, 44)"],.notion-body:not(.dark) [style*=" color:rgb(55, 53, 47)"],.notion-body:not(.dark) [style*=" color:rgb(64, 44, 27)"],.notion-body:not(.dark) [style*=" color:rgb(65, 36, 84)"],.notion-body:not(.dark) [style*=" color:rgb(68, 42, 30)"],.notion-body:not(.dark) [style*=" color:rgb(73, 41, 14)"],.notion-body:not(.dark) [style*=" color:rgb(76, 35, 55)"],.notion-body:not(.dark) [style*=" color:rgb(93, 23, 21)"],.notion-body:not(.dark) [style*=" color:rgba(255, 255, 255, 0.9)"],.notion-body:not(.dark) [style*=" color:rgba(55, 53, 47, 0.85)"],.notion-body:not(.dark) [style*=";color: rgb(24, 51, 71)"],.notion-body:not(.dark) [style*=";color: rgb(28, 56, 41)"],.notion-body:not(.dark) [style*=";color: rgb(50, 48, 44)"],.notion-body:not(.dark) [style*=";color: rgb(55, 53, 47)"],.notion-body:not(.dark) [style*=";color: rgb(64, 44, 27)"],.notion-body:not(.dark) [style*=";color: rgb(65, 36, 84)"],.notion-body:not(.dark) [style*=";color: rgb(68, 42, 30)"],.notion-body:not(.dark) [style*=";color: rgb(73, 41, 14)"],.notion-body:not(.dark) [style*=";color: rgb(76, 35, 55)"],.notion-body:not(.dark) [style*=";color: rgb(93, 23, 21)"],.notion-body:not(.dark) [style*=";color: rgba(255, 255, 255, 0.9)"],.notion-body:not(.dark) [style*=";color: rgba(55, 53, 47, 0.85)"],.notion-body:not(.dark) [style*=";color:rgb(24, 51, 71)"],.notion-body:not(.dark) [style*=";color:rgb(28, 56, 41)"],.notion-body:not(.dark) [style*=";color:rgb(50, 48, 44)"],.notion-body:not(.dark) [style*=";color:rgb(55, 53, 47)"],.notion-body:not(.dark) [style*=";color:rgb(64, 44, 27)"],.notion-body:not(.dark) [style*=";color:rgb(65, 36, 84)"],.notion-body:not(.dark) [style*=";color:rgb(68, 42, 30)"],.notion-body:not(.dark) [style*=";color:rgb(73, 41, 14)"],.notion-body:not(.dark) [style*=";color:rgb(76, 35, 55)"],.notion-body:not(.dark) [style*=";color:rgb(93, 23, 21)"],.notion-body:not(.dark) [style*=";color:rgba(255, 255, 255, 0.9)"],.notion-body:not(.dark) [style*=";color:rgba(55, 53, 47, 0.85)"],.notion-body:not(.dark) [style*="fill: rgb(24, 51, 71)"],.notion-body:not(.dark) [style*="fill: rgb(28, 56, 41)"],.notion-body:not(.dark) [style*="fill: rgb(50, 48, 44)"],.notion-body:not(.dark) [style*="fill: rgb(55, 53, 47)"],.notion-body:not(.dark) [style*="fill: rgb(64, 44, 27)"],.notion-body:not(.dark) [style*="fill: rgb(65, 36, 84)"],.notion-body:not(.dark) [style*="fill: rgb(68, 42, 30)"],.notion-body:not(.dark) [style*="fill: rgb(73, 41, 14)"],.notion-body:not(.dark) [style*="fill: rgb(76, 35, 55)"],.notion-body:not(.dark) [style*="fill: rgb(93, 23, 21)"],.notion-body:not(.dark) [style*="fill: rgba(255, 255, 255, 0.9)"],.notion-body:not(.dark) [style*="fill: rgba(55, 53, 47, 0.85)"],.notion-body:not(.dark) [style*="fill:rgb(24, 51, 71)"],.notion-body:not(.dark) [style*="fill:rgb(28, 56, 41)"],.notion-body:not(.dark) [style*="fill:rgb(50, 48, 44)"],.notion-body:not(.dark) [style*="fill:rgb(55, 53, 47)"],.notion-body:not(.dark) [style*="fill:rgb(64, 44, 27)"],.notion-body:not(.dark) [style*="fill:rgb(65, 36, 84)"],.notion-body:not(.dark) [style*="fill:rgb(68, 42, 30)"],.notion-body:not(.dark) [style*="fill:rgb(73, 41, 14)"],.notion-body:not(.dark) [style*="fill:rgb(76, 35, 55)"],.notion-body:not(.dark) [style*="fill:rgb(93, 23, 21)"],.notion-body:not(.dark) [style*="fill:rgba(255, 255, 255, 0.9)"],.notion-body:not(.dark) [style*="fill:rgba(55, 53, 47, 0.85)"],.notion-body:not(.dark) [style^="color: rgb(24, 51, 71)"],.notion-body:not(.dark) [style^="color: rgb(28, 56, 41)"],.notion-body:not(.dark) [style^="color: rgb(50, 48, 44)"],.notion-body:not(.dark) [style^="color: rgb(55, 53, 47)"],.notion-body:not(.dark) [style^="color: rgb(64, 44, 27)"],.notion-body:not(.dark) [style^="color: rgb(65, 36, 84)"],.notion-body:not(.dark) [style^="color: rgb(68, 42, 30)"],.notion-body:not(.dark) [style^="color: rgb(73, 41, 14)"],.notion-body:not(.dark) [style^="color: rgb(76, 35, 55)"],.notion-body:not(.dark) [style^="color: rgb(93, 23, 21)"],.notion-body:not(.dark) [style^="color: rgba(255, 255, 255, 0.9)"],.notion-body:not(.dark) [style^="color: rgba(55, 53, 47, 0.85)"],.notion-body:not(.dark) [style^="color:rgb(24, 51, 71)"],.notion-body:not(.dark) [style^="color:rgb(28, 56, 41)"],.notion-body:not(.dark) [style^="color:rgb(50, 48, 44)"],.notion-body:not(.dark) [style^="color:rgb(55, 53, 47)"],.notion-body:not(.dark) [style^="color:rgb(64, 44, 27)"],.notion-body:not(.dark) [style^="color:rgb(65, 36, 84)"],.notion-body:not(.dark) [style^="color:rgb(68, 42, 30)"],.notion-body:not(.dark) [style^="color:rgb(73, 41, 14)"],.notion-body:not(.dark) [style^="color:rgb(76, 35, 55)"],.notion-body:not(.dark) [style^="color:rgb(93, 23, 21)"],.notion-body:not(.dark) [style^="color:rgba(255, 255, 255, 0.9)"],.notion-body:not(.dark) [style^="color:rgba(55, 53, 47, 0.85)"]{color:var(--theme--fg-primary,#37352f)!important;caret-color:var(--theme--fg-primary,#37352f)!important;text-decoration-color:currentColor!important;fill:var(--theme--fg-primary,#37352f)!important}.notion-body:not(.dark) .rdp-day.rdp-day_outside,.notion-body:not(.dark) .rdp-head_cell,.notion-body:not(.dark) .rdp-nav_icon,.notion-body:not(.dark) ::placeholder,.notion-body:not(.dark) [style*=" color: rgba(206, 205, 202, 0.6)"],.notion-body:not(.dark) [style*=" color: rgba(25, 23, 17, 0.6)"],.notion-body:not(.dark) [style*=" color: rgba(55, 53, 47, 0.16)"],.notion-body:not(.dark) [style*=" color: rgba(55, 53, 47, 0.35)"],.notion-body:not(.dark) [style*=" color: rgba(55, 53, 47, 0.45)"],.notion-body:not(.dark) [style*=" color: rgba(55, 53, 47, 0.5)"],.notion-body:not(.dark) [style*=" color: rgba(55, 53, 47, 0.65)"],.notion-body:not(.dark) [style*=" color:rgba(206, 205, 202, 0.6)"],.notion-body:not(.dark) [style*=" color:rgba(25, 23, 17, 0.6)"],.notion-body:not(.dark) [style*=" color:rgba(55, 53, 47, 0.16)"],.notion-body:not(.dark) [style*=" color:rgba(55, 53, 47, 0.35)"],.notion-body:not(.dark) [style*=" color:rgba(55, 53, 47, 0.45)"],.notion-body:not(.dark) [style*=" color:rgba(55, 53, 47, 0.5)"],.notion-body:not(.dark) [style*=" color:rgba(55, 53, 47, 0.65)"],.notion-body:not(.dark) [style*=";color: rgba(206, 205, 202, 0.6)"],.notion-body:not(.dark) [style*=";color: rgba(25, 23, 17, 0.6)"],.notion-body:not(.dark) [style*=";color: rgba(55, 53, 47, 0.16)"],.notion-body:not(.dark) [style*=";color: rgba(55, 53, 47, 0.35)"],.notion-body:not(.dark) [style*=";color: rgba(55, 53, 47, 0.45)"],.notion-body:not(.dark) [style*=";color: rgba(55, 53, 47, 0.5)"],.notion-body:not(.dark) [style*=";color: rgba(55, 53, 47, 0.65)"],.notion-body:not(.dark) [style*=";color:rgba(206, 205, 202, 0.6)"],.notion-body:not(.dark) [style*=";color:rgba(25, 23, 17, 0.6)"],.notion-body:not(.dark) [style*=";color:rgba(55, 53, 47, 0.16)"],.notion-body:not(.dark) [style*=";color:rgba(55, 53, 47, 0.35)"],.notion-body:not(.dark) [style*=";color:rgba(55, 53, 47, 0.45)"],.notion-body:not(.dark) [style*=";color:rgba(55, 53, 47, 0.5)"],.notion-body:not(.dark) [style*=";color:rgba(55, 53, 47, 0.65)"],.notion-body:not(.dark) [style*="fill: rgba(206, 205, 202, 0.6)"],.notion-body:not(.dark) [style*="fill: rgba(25, 23, 17, 0.6)"],.notion-body:not(.dark) [style*="fill: rgba(55, 53, 47, 0.16)"],.notion-body:not(.dark) [style*="fill: rgba(55, 53, 47, 0.35)"],.notion-body:not(.dark) [style*="fill: rgba(55, 53, 47, 0.45)"],.notion-body:not(.dark) [style*="fill: rgba(55, 53, 47, 0.5)"],.notion-body:not(.dark) [style*="fill: rgba(55, 53, 47, 0.65)"],.notion-body:not(.dark) [style*="fill:rgba(206, 205, 202, 0.6)"],.notion-body:not(.dark) [style*="fill:rgba(25, 23, 17, 0.6)"],.notion-body:not(.dark) [style*="fill:rgba(55, 53, 47, 0.16)"],.notion-body:not(.dark) [style*="fill:rgba(55, 53, 47, 0.35)"],.notion-body:not(.dark) [style*="fill:rgba(55, 53, 47, 0.45)"],.notion-body:not(.dark) [style*="fill:rgba(55, 53, 47, 0.5)"],.notion-body:not(.dark) [style*="fill:rgba(55, 53, 47, 0.65)"],.notion-body:not(.dark) [style^="color: rgba(206, 205, 202, 0.6)"],.notion-body:not(.dark) [style^="color: rgba(25, 23, 17, 0.6)"],.notion-body:not(.dark) [style^="color: rgba(55, 53, 47, 0.16)"],.notion-body:not(.dark) [style^="color: rgba(55, 53, 47, 0.35)"],.notion-body:not(.dark) [style^="color: rgba(55, 53, 47, 0.45)"],.notion-body:not(.dark) [style^="color: rgba(55, 53, 47, 0.5)"],.notion-body:not(.dark) [style^="color: rgba(55, 53, 47, 0.65)"],.notion-body:not(.dark) [style^="color:rgba(206, 205, 202, 0.6)"],.notion-body:not(.dark) [style^="color:rgba(25, 23, 17, 0.6)"],.notion-body:not(.dark) [style^="color:rgba(55, 53, 47, 0.16)"],.notion-body:not(.dark) [style^="color:rgba(55, 53, 47, 0.35)"],.notion-body:not(.dark) [style^="color:rgba(55, 53, 47, 0.45)"],.notion-body:not(.dark) [style^="color:rgba(55, 53, 47, 0.5)"],.notion-body:not(.dark) [style^="color:rgba(55, 53, 47, 0.65)"]{color:var(--theme--fg-secondary,rgba(25,23,17,0.6))!important;caret-color:var(--theme--fg-secondary,rgba(25,23,17,0.6))!important;text-decoration-color:currentColor!important;fill:var(--theme--fg-secondary,rgba(25,23,17,0.6))!important}.notion-body:not(.dark) :is([style*="caret-color:rgb(24, 51, 71)"],[style*="caret-color: rgb(24, 51, 71)"]),.notion-body:not(.dark) :is([style*="caret-color:rgb(28, 56, 41)"],[style*="caret-color: rgb(28, 56, 41)"]),.notion-body:not(.dark) :is([style*="caret-color:rgb(50, 48, 44)"],[style*="caret-color: rgb(50, 48, 44)"]),.notion-body:not(.dark) :is([style*="caret-color:rgb(55, 53, 47)"],[style*="caret-color: rgb(55, 53, 47)"]),.notion-body:not(.dark) :is([style*="caret-color:rgb(64, 44, 27)"],[style*="caret-color: rgb(64, 44, 27)"]),.notion-body:not(.dark) :is([style*="caret-color:rgb(65, 36, 84)"],[style*="caret-color: rgb(65, 36, 84)"]),.notion-body:not(.dark) :is([style*="caret-color:rgb(68, 42, 30)"],[style*="caret-color: rgb(68, 42, 30)"]),.notion-body:not(.dark) :is([style*="caret-color:rgb(73, 41, 14)"],[style*="caret-color: rgb(73, 41, 14)"]),.notion-body:not(.dark) :is([style*="caret-color:rgb(76, 35, 55)"],[style*="caret-color: rgb(76, 35, 55)"]),.notion-body:not(.dark) :is([style*="caret-color:rgb(93, 23, 21)"],[style*="caret-color: rgb(93, 23, 21)"]),.notion-body:not(.dark) :is([style*="caret-color:rgba(255, 255, 255, 0.9)"],[style*="caret-color: rgba(255, 255, 255, 0.9)"]),.notion-body:not(.dark) :is([style*="caret-color:rgba(55, 53, 47, 0.85)"],[style*="caret-color: rgba(55, 53, 47, 0.85)"]){caret-color:var(--theme--fg-primary,#37352f)!important}.notion-body:not(.dark) ::placeholder,.notion-body:not(.dark) :is([style*="caret-color:rgba(206, 205, 202, 0.6)"],[style*="caret-color: rgba(206, 205, 202, 0.6)"]),.notion-body:not(.dark) :is([style*="caret-color:rgba(25, 23, 17, 0.6)"],[style*="caret-color: rgba(25, 23, 17, 0.6)"]),.notion-body:not(.dark) :is([style*="caret-color:rgba(55, 53, 47, 0.16)"],[style*="caret-color: rgba(55, 53, 47, 0.16)"]),.notion-body:not(.dark) :is([style*="caret-color:rgba(55, 53, 47, 0.35)"],[style*="caret-color: rgba(55, 53, 47, 0.35)"]),.notion-body:not(.dark) :is([style*="caret-color:rgba(55, 53, 47, 0.45)"],[style*="caret-color: rgba(55, 53, 47, 0.45)"]),.notion-body:not(.dark) :is([style*="caret-color:rgba(55, 53, 47, 0.5)"],[style*="caret-color: rgba(55, 53, 47, 0.5)"]),.notion-body:not(.dark) :is([style*="caret-color:rgba(55, 53, 47, 0.65)"],[style*="caret-color: rgba(55, 53, 47, 0.65)"]){caret-color:var(--theme--fg-secondary,rgba(25,23,17,0.6))!important}.notion-body:not(.dark) [style*="-webkit-text-fill-color:"]{-webkit-text-fill-color:var(--theme--fg-secondary,rgba(25,23,17,0.6))!important}.notion-body:not(.dark) [style*="rgb(238, 238, 237)"]:is([style*="border:"],[style*="border-top:"],[style*="border-left:"],[style*="border-bottom:"],[style*="border-right:"]),[style*="1px solid rgb(233, 233, 231)"]:is([style*="border:"],[style*="border-top:"],[style*="border-left:"],[style*="border-bottom:"],[style*="border-right:"]),[style*="1px solid rgba(55, 53, 47, 0.09)"]:is([style*="border:"],[style*="border-top:"],[style*="border-left:"],[style*="border-bottom:"],[style*="border-right:"]),[style*="1px solid rgba(55, 53, 47, 0.16)"]:is([style*="border:"],[style*="border-top:"],[style*="border-left:"],[style*="border-bottom:"],[style*="border-right:"]),[style*="2px solid rgb(55, 53, 47)"]:is([style*="border:"],[style*="border-top:"],[style*="border-left:"],[style*="border-bottom:"],[style*="border-right:"]){border-color:var(--theme--fg-border,#e9e9e7)!important}.notion-body:not(.dark) [style*="; box-shadow: rgba(55, 53, 47, 0.09) 0px -1px 0px;"]{box-shadow:var(--theme--fg-border,#e9e9e7)0-1px 0!important}.notion-body:not(.dark) [style*="; box-shadow: rgba(15, 15, 15, 0.1) 0px 0px 0px 1px inset;"]{box-shadow:var(--theme--fg-border,#e9e9e7)0 0 0 1px inset!important}.notion-body:not(.dark) [style*="; box-shadow: white -3px 0px 0px, rgb(233, 233, 231) 0px 1px 0px;"]{box-shadow:#fff -3px 0 0,transparent 0 1px 0!important}.notion-body:not(.dark) [style*="; box-shadow: rgb(233, 233, 231) 0px -1px 0px inset;"]{box-shadow:var(--theme--fg-border,#e9e9e7)0-1px 0 inset!important}.notion-body:not(.dark) [style*="; box-shadow: rgba(55, 53, 47, 0.16) 1px 0px 0px inset;"]{box-shadow:var(--theme--fg-border,#e9e9e7) 1px 0 0 inset!important}.notion-body:not(.dark) [style*="; box-shadow: rgb(233, 233, 231) 0px 1px 0px;"]{box-shadow:var(--theme--fg-border,#e9e9e7)0 1px 0!important}.notion-body:not(.dark) [style*="box-shadow: rgb(233, 233, 231) -1px 0px 0px;"]{box-shadow:var(--theme--fg-border,#e9e9e7) -1px 0 0!important}.notion-body:not(.dark) [style*="height: 1px;"][style*=background]{background:var(--theme--fg-border,#e9e9e7)!important}.notion-body:not(.dark) .notion-code-block span.token[style*="rgba(120, 119, 116, 1)"],.notion-body:not(.dark) .notion-enable-hover[style*="rgba(120, 119, 116, 1)"],.notion-body:not(.dark) .notion-text-block>[style*="color:"][style*="fill:"][style*="rgb(120, 119, 116)"]{color:var(--theme--fg-gray,#787774)!important;fill:var(--theme--fg-gray,#787774)!important}.notion-body:not(.dark) .notion-code-block span.token[style*="rgba(159, 107, 83, 1)"],.notion-body:not(.dark) .notion-enable-hover[style*="rgba(159, 107, 83, 1)"],.notion-body:not(.dark) .notion-text-block>[style*="color:"][style*="fill:"][style*="rgb(159, 107, 83)"]{color:var(--theme--fg-brown,#9f6b53)!important;fill:var(--theme--fg-brown,#9f6b53)!important}.notion-body:not(.dark) .notion-code-block span.token[style*="rgba(217, 115, 13, 1)"],.notion-body:not(.dark) .notion-enable-hover[style*="rgba(217, 115, 13, 1)"],.notion-body:not(.dark) .notion-text-block>[style*="color:"][style*="fill:"][style*="rgb(217, 115, 13)"]{color:var(--theme--fg-orange,#d9730d)!important;fill:var(--theme--fg-orange,#d9730d)!important}.notion-body:not(.dark) .notion-code-block span.token[style*="rgba(203, 145, 47, 1)"],.notion-body:not(.dark) .notion-enable-hover[style*="rgba(203, 145, 47, 1)"],.notion-body:not(.dark) .notion-text-block>[style*="color:"][style*="fill:"][style*="rgb(203, 145, 47)"]{color:var(--theme--fg-yellow,#cb912f)!important;fill:var(--theme--fg-yellow,#cb912f)!important}.notion-body:not(.dark) .notion-code-block span.token[style*="rgba(68, 131, 97, 1)"],.notion-body:not(.dark) .notion-enable-hover[style*="rgba(68, 131, 97, 1)"],.notion-body:not(.dark) .notion-text-block>[style*="color:"][style*="fill:"][style*="rgb(68, 131, 97)"]{color:var(--theme--fg-green,#448361)!important;fill:var(--theme--fg-green,#448361)!important}.notion-body:not(.dark) .notion-code-block span.token[style*="rgba(51, 126, 169, 1)"],.notion-body:not(.dark) .notion-enable-hover[style*="rgba(51, 126, 169, 1)"],.notion-body:not(.dark) .notion-text-block>[style*="color:"][style*="fill:"][style*="rgb(51, 126, 169)"]{color:var(--theme--fg-blue,#337ea9)!important;fill:var(--theme--fg-blue,#337ea9)!important}.notion-body:not(.dark) .notion-code-block span.token[style*="rgba(144, 101, 176, 1)"],.notion-body:not(.dark) .notion-enable-hover[style*="rgba(144, 101, 176, 1)"],.notion-body:not(.dark) .notion-text-block>[style*="color:"][style*="fill:"][style*="rgb(144, 101, 176)"]{color:var(--theme--fg-purple,#9065b0)!important;fill:var(--theme--fg-purple,#9065b0)!important}.notion-body:not(.dark) .notion-code-block span.token[style*="rgba(193, 76, 138, 1)"],.notion-body:not(.dark) .notion-enable-hover[style*="rgba(193, 76, 138, 1)"],.notion-body:not(.dark) .notion-text-block>[style*="color:"][style*="fill:"][style*="rgb(193, 76, 138)"]{color:var(--theme--fg-pink,#c14c8a)!important;fill:var(--theme--fg-pink,#c14c8a)!important}.notion-body:not(.dark) .notion-code-block span.token[style*="rgba(212, 76, 71, 1)"],.notion-body:not(.dark) .notion-enable-hover[style*="rgba(212, 76, 71, 1)"],.notion-body:not(.dark) .notion-text-block>[style*="color:"][style*="fill:"][style*="rgb(212, 76, 71)"]{color:var(--theme--fg-red,#d44c47)!important;fill:var(--theme--fg-red,#d44c47)!important}.notion-body:not(.dark) .notion-board-view :is(.notion-board-group[style*="rgba(249, 249, 245, 0.5)"] [style*="height: 32px"],[style*="rgba(249, 249, 245, 0.5)"]>[style*=color]:nth-child(2),[style*="rgba(249, 249, 245, 0.5)"]>div>svg){color:var(--theme--fg-secondary,rgba(145,145,142,0.5))!important;fill:var(--theme--fg-secondary,rgba(145,145,142,0.5))!important}.notion-body:not(.dark) .notion-board-view :is(.notion-board-group[style*="rgba(247, 247, 245, 0.7)"] [style*="height: 32px"],[style*="rgba(247, 247, 245, 0.7)"]>[style*=color]:nth-child(2),[style*="rgba(247, 247, 245, 0.7)"]>div>svg){color:var(--theme--fg-gray,#91918e)!important;fill:var(--theme--fg-gray,#91918e)!important}.notion-body:not(.dark) .notion-board-view :is(.notion-board-group[style*="rgba(250, 246, 245, 0.7)"] [style*="height: 32px"],[style*="rgba(250, 246, 245, 0.7)"]>[style*=color]:nth-child(2),[style*="rgba(250, 246, 245, 0.7)"]>div>svg){color:var(--theme--fg-brown,#bb846c)!important;fill:var(--theme--fg-brown,#bb846c)!important}.notion-body:not(.dark) .notion-board-view :is(.notion-board-group[style*="rgba(252, 245, 242, 0.7)"] [style*="height: 32px"],[style*="rgba(252, 245, 242, 0.7)"]>[style*=color]:nth-child(2),[style*="rgba(252, 245, 242, 0.7)"]>div>svg){color:var(--theme--fg-orange,#d7813a)!important;fill:var(--theme--fg-orange,#d7813a)!important}.notion-body:not(.dark) .notion-board-view :is(.notion-board-group[style*="rgba(250, 247, 237, 0.7)"] [style*="height: 32px"],[style*="rgba(250, 247, 237, 0.7)"]>[style*=color]:nth-child(2),[style*="rgba(250, 247, 237, 0.7)"]>div>svg){color:var(--theme--fg-yellow,#cb9433)!important;fill:var(--theme--fg-yellow,#cb9433)!important}.notion-body:not(.dark) .notion-board-view :is(.notion-board-group[style*="rgba(244, 248, 243, 0.7)"] [style*="height: 32px"],[style*="rgba(244, 248, 243, 0.7)"]>[style*=color]:nth-child(2),[style*="rgba(244, 248, 243, 0.7)"]>div>svg){color:var(--theme--fg-green,#6c9b7d)!important;fill:var(--theme--fg-green,#6c9b7d)!important}.notion-body:not(.dark) .notion-board-view :is(.notion-board-group[style*="rgba(241, 248, 251, 0.7)"] [style*="height: 32px"],[style*="rgba(241, 248, 251, 0.7)"]>[style*=color]:nth-child(2),[style*="rgba(241, 248, 251, 0.7)"]>div>svg){color:var(--theme--fg-blue,#5b97bd)!important;fill:var(--theme--fg-blue,#5b97bd)!important}.notion-body:not(.dark) .notion-board-view :is(.notion-board-group[style*="rgba(249, 246, 252, 0.7)"] [style*="height: 32px"],[style*="rgba(249, 246, 252, 0.7)"]>[style*=color]:nth-child(2),[style*="rgba(249, 246, 252, 0.7)"]>div>svg){color:var(--theme--fg-purple,#a782c3)!important;fill:var(--theme--fg-purple,#a782c3)!important}.notion-body:not(.dark) .notion-board-view :is(.notion-board-group[style*="rgba(251, 245, 251, 0.7)"] [style*="height: 32px"],[style*="rgba(251, 245, 251, 0.7)"]>[style*=color]:nth-child(2),[style*="rgba(251, 245, 251, 0.7)"]>div>svg){color:var(--theme--fg-pink,#cd749f)!important;fill:var(--theme--fg-pink,#cd749f)!important}.notion-body:not(.dark) .notion-board-view :is(.notion-board-group[style*="rgba(253, 245, 243, 0.7)"] [style*="height: 32px"],[style*="rgba(253, 245, 243, 0.7)"]>[style*=color]:nth-child(2),[style*="rgba(253, 245, 243, 0.7)"]>div>svg){color:var(--theme--fg-red,#e16f64)!important;fill:var(--theme--fg-red,#e16f64)!important}.notion-body:not(.dark) [style*="background-color: rgb(247, 247, 247)"],.notion-body:not(.dark) [style*="background-color: rgb(255, 255, 255)"],.notion-body:not(.dark) [style*="background-color: white"],.notion-body:not(.dark) [style*="background-color:rgb(247, 247, 247)"],.notion-body:not(.dark) [style*="background-color:rgb(255, 255, 255)"],.notion-body:not(.dark) [style*="background-color:white"],.notion-body:not(.dark) [style*="background: rgb(247, 247, 247)"],.notion-body:not(.dark) [style*="background: rgb(255, 255, 255)"],.notion-body:not(.dark) [style*="background: white"],.notion-body:not(.dark) [style*="background:rgb(247, 247, 247)"],.notion-body:not(.dark) [style*="background:rgb(255, 255, 255)"],.notion-body:not(.dark) [style*="background:white"]{background:var(--theme--bg-primary,#fff)!important}.notion-body:not(.dark) .notion-focusable-within [style*=background],.notion-body:not(.dark) [style*="background-color: rgb(15, 15, 15)"],.notion-body:not(.dark) [style*="background-color: rgb(251, 251, 250)"],.notion-body:not(.dark) [style*="background-color: rgb(253, 253, 253)"],.notion-body:not(.dark) [style*="background-color:rgb(15, 15, 15)"],.notion-body:not(.dark) [style*="background-color:rgb(251, 251, 250)"],.notion-body:not(.dark) [style*="background-color:rgb(253, 253, 253)"],.notion-body:not(.dark) [style*="background: rgb(15, 15, 15)"],.notion-body:not(.dark) [style*="background: rgb(251, 251, 250)"],.notion-body:not(.dark) [style*="background: rgb(253, 253, 253)"],.notion-body:not(.dark) [style*="background:rgb(15, 15, 15)"],.notion-body:not(.dark) [style*="background:rgb(251, 251, 250)"],.notion-body:not(.dark) [style*="background:rgb(253, 253, 253)"]{background:var(--theme--bg-secondary,#fbfbfa)!important}[style*="linear-gradient(to left, white 20%, rgba(255, 255, 255, 0) 100%)"]{background-image:linear-gradient(to left,var(--theme--bg-primary,#fff) 20%,transparent 100%)!important}[style*="linear-gradient(to right, white 20%, rgba(255, 255, 255, 0) 100%)"]{background-image:linear-gradient(to right,var(--theme--bg-primary,#fff) 20%,transparent 100%)!important}.notion-body:not(.dark) :is([style*="background: rgb(225, 225, 225)"],[style*="background-color: rgb(225, 225, 225)"]),.notion-body:not(.dark) :is([style*="background: rgb(239, 239, 238)"],[style*="background-color: rgb(239, 239, 238)"]),.notion-body:not(.dark) :is([style*="background: rgba(242, 241, 238, 0.6)"],[style*="background-color: rgba(242, 241, 238, 0.6)"]),.notion-body:not(.dark) :is([style*="background: rgba(55, 53, 47, 0.08)"],[style*="background-color: rgba(55, 53, 47, 0.08)"]),.notion-body:not(.dark) [style*="height: 14px; width: 26px; border-radius: 44px;"][style*=rgba]{background:var(--theme--bg-hover,rgba(55,53,47,0.08))!important}.notion-body:not(.dark) .notion-selectable .notion-enable-hover[style*="background:"][style*="rgba(241, 241, 239, 1)"],.notion-body:not(.dark) .notion-text-block>[style*="background:"][style*="rgb(241, 241, 239)"]{background:var(--theme--bg-gray,#f1f1ef)!important}.notion-body:not(.dark) .notion-selectable .notion-enable-hover[style*="background:"][style*="rgba(244, 238, 238, 1)"],.notion-body:not(.dark) .notion-text-block>[style*="background:"][style*="rgb(244, 238, 238)"]{background:var(--theme--bg-brown,#f4eeee)!important}.notion-body:not(.dark) .notion-selectable .notion-enable-hover[style*="background:"][style*="rgba(251, 236, 221, 1)"],.notion-body:not(.dark) .notion-text-block>[style*="background:"][style*="rgb(251, 236, 221)"]{background:var(--theme--bg-orange,#fbecdd)!important}.notion-body:not(.dark) .notion-selectable .notion-enable-hover[style*="background:"][style*="rgba(251, 243, 219, 1)"],.notion-body:not(.dark) .notion-text-block>[style*="background:"][style*="rgb(251, 243, 219)"]{background:var(--theme--bg-yellow,#fbf3db)!important}.notion-body:not(.dark) .notion-selectable .notion-enable-hover[style*="background:"][style*="rgba(237, 243, 236, 1)"],.notion-body:not(.dark) .notion-text-block>[style*="background:"][style*="rgb(237, 243, 236)"]{background:var(--theme--bg-green,#edf3ec)!important}.notion-body:not(.dark) .notion-selectable .notion-enable-hover[style*="background:"][style*="rgba(231, 243, 248, 1)"],.notion-body:not(.dark) .notion-text-block>[style*="background:"][style*="rgb(231, 243, 248)"]{background:var(--theme--bg-blue,#e7f3f8)!important}.notion-body:not(.dark) .notion-selectable .notion-enable-hover[style*="background:"][style*="rgba(244, 240, 247, 0.8)"],.notion-body:not(.dark) .notion-text-block>[style*="background:"][style*="rgba(244, 240, 247, 0.8)"]{background:var(--theme--bg-purple,rgba(244,240,247,0.8))!important}.notion-body:not(.dark) .notion-selectable .notion-enable-hover[style*="background:"][style*="rgba(249, 238, 243, 0.8)"],.notion-body:not(.dark) .notion-text-block>[style*="background:"][style*="rgba(249, 238, 243, 0.8)"]{background:var(--theme--bg-pink,rgba(249,238,243,0.8))!important}.notion-body:not(.dark) .notion-selectable .notion-enable-hover[style*="background:"][style*="rgba(253, 235, 236, 1)"],.notion-body:not(.dark) .notion-text-block>[style*="background:"][style*="rgb(253, 235, 236)"]{background:var(--theme--bg-red,#fdebec)!important}.notion-body:not(.dark) .notion-collection_view-block [style*="height: 14px; border-radius: 3px; padding-left: 6px;"][style*="rgba(227, 226, 224, 0.5)"],.notion-body:not(.dark) .notion-timeline-item-properties [style*="height: 18px; border-radius: 3px; padding-left: 8px;"][style*="rgba(227, 226, 224, 0.5)"],.notion-body:not(.dark) [style*="height: 20px; border-radius: 3px; padding-left: 6px;"][style*="background:"][style*="rgba(227, 226, 224, 0.5)"]{background:var(--theme--bg-light_gray,rgba(227,226,224,0.5))!important}.notion-body:not(.dark) .notion-collection_view-block [style*="height: 14px; border-radius: 3px; padding-left: 6px;"][style*="rgb(227, 226, 224)"],.notion-body:not(.dark) .notion-timeline-item-properties [style*="height: 18px; border-radius: 3px; padding-left: 8px;"][style*="rgb(227, 226, 224)"],.notion-body:not(.dark) [style*="height: 20px; border-radius: 3px; padding-left: 6px;"][style*="background:"][style*="rgb(227, 226, 224)"]{background:var(--theme--bg-gray,#e3e2e0)!important}.notion-body:not(.dark) .notion-collection_view-block [style*="height: 14px; border-radius: 3px; padding-left: 6px;"][style*="rgb(238, 224, 218)"],.notion-body:not(.dark) .notion-timeline-item-properties [style*="height: 18px; border-radius: 3px; padding-left: 8px;"][style*="rgb(238, 224, 218)"],.notion-body:not(.dark) [style*="height: 20px; border-radius: 3px; padding-left: 6px;"][style*="background:"][style*="rgb(238, 224, 218)"]{background:var(--theme--bg-brown,#eee0da)!important}.notion-body:not(.dark) .notion-collection_view-block [style*="height: 14px; border-radius: 3px; padding-left: 6px;"][style*="rgb(250, 222, 201)"],.notion-body:not(.dark) .notion-timeline-item-properties [style*="height: 18px; border-radius: 3px; padding-left: 8px;"][style*="rgb(250, 222, 201)"],.notion-body:not(.dark) [style*="height: 20px; border-radius: 3px; padding-left: 6px;"][style*="background:"][style*="rgb(250, 222, 201)"]{background:var(--theme--bg-orange,#fadec9)!important}.notion-body:not(.dark) .notion-collection_view-block [style*="height: 14px; border-radius: 3px; padding-left: 6px;"][style*="rgb(253, 236, 200)"],.notion-body:not(.dark) .notion-timeline-item-properties [style*="height: 18px; border-radius: 3px; padding-left: 8px;"][style*="rgb(253, 236, 200)"],.notion-body:not(.dark) [style*="height: 20px; border-radius: 3px; padding-left: 6px;"][style*="background:"][style*="rgb(253, 236, 200)"]{background:var(--theme--bg-yellow,#fdecc8)!important}.notion-body:not(.dark) .notion-collection_view-block [style*="height: 14px; border-radius: 3px; padding-left: 6px;"][style*="rgb(219, 237, 219)"],.notion-body:not(.dark) .notion-timeline-item-properties [style*="height: 18px; border-radius: 3px; padding-left: 8px;"][style*="rgb(219, 237, 219)"],.notion-body:not(.dark) [style*="height: 20px; border-radius: 3px; padding-left: 6px;"][style*="background:"][style*="rgb(219, 237, 219)"]{background:var(--theme--bg-green,#dbeddb)!important}.notion-body:not(.dark) .notion-collection_view-block [style*="height: 14px; border-radius: 3px; padding-left: 6px;"][style*="rgb(211, 229, 239)"],.notion-body:not(.dark) .notion-timeline-item-properties [style*="height: 18px; border-radius: 3px; padding-left: 8px;"][style*="rgb(211, 229, 239)"],.notion-body:not(.dark) [style*="height: 20px; border-radius: 3px; padding-left: 6px;"][style*="background:"][style*="rgb(211, 229, 239)"]{background:var(--theme--bg-blue,#d3e5ef)!important}.notion-body:not(.dark) .notion-collection_view-block [style*="height: 14px; border-radius: 3px; padding-left: 6px;"][style*="rgb(232, 222, 238)"],.notion-body:not(.dark) .notion-timeline-item-properties [style*="height: 18px; border-radius: 3px; padding-left: 8px;"][style*="rgb(232, 222, 238)"],.notion-body:not(.dark) [style*="height: 20px; border-radius: 3px; padding-left: 6px;"][style*="background:"][style*="rgb(232, 222, 238)"]{background:var(--theme--bg-purple,#e8deee)!important}.notion-body:not(.dark) .notion-collection_view-block [style*="height: 14px; border-radius: 3px; padding-left: 6px;"][style*="rgb(245, 224, 233)"],.notion-body:not(.dark) .notion-timeline-item-properties [style*="height: 18px; border-radius: 3px; padding-left: 8px;"][style*="rgb(245, 224, 233)"],.notion-body:not(.dark) [style*="height: 20px; border-radius: 3px; padding-left: 6px;"][style*="background:"][style*="rgb(245, 224, 233)"]{background:var(--theme--bg-pink,#f5e0e9)!important}.notion-body:not(.dark) .notion-collection_view-block [style*="height: 14px; border-radius: 3px; padding-left: 6px;"][style*="rgb(255, 226, 221)"],.notion-body:not(.dark) .notion-timeline-item-properties [style*="height: 18px; border-radius: 3px; padding-left: 8px;"][style*="rgb(255, 226, 221)"],.notion-body:not(.dark) [style*="height: 20px; border-radius: 3px; padding-left: 6px;"][style*="background:"][style*="rgb(255, 226, 221)"]{background:var(--theme--bg-red,#ffe2dd)!important}.notion-body:not(.dark) .notion-board-view .notion-board-group[style*="rgba(249, 249, 245, 0.5)"] a[style*=background]{background:var(--theme--bg-light_gray,#fff)!important}.notion-body:not(.dark) .notion-board-view [style*="rgba(249, 249, 245, 0.5)"]:is(.notion-board-group,[style*="border-top-left-radius: 5px;"]){background:var(--theme--bg_dim-light_gray,rgba(249,249,245,0.5))!important}.notion-body:not(.dark) .notion-board-view .notion-board-group[style*="rgba(247, 247, 245, 0.7)"] a[style*=background]{background:var(--theme--bg-gray,#fff)!important}.notion-body:not(.dark) .notion-board-view [style*="rgba(247, 247, 245, 0.7)"]:is(.notion-board-group,[style*="border-top-left-radius: 5px;"]){background:var(--theme--bg_dim-gray,rgba(247,247,245,0.7))!important}.notion-body:not(.dark) .notion-board-view .notion-board-group[style*="rgba(250, 246, 245, 0.7)"] a[style*=background]{background:var(--theme--bg-brown,#fff)!important}.notion-body:not(.dark) .notion-board-view [style*="rgba(250, 246, 245, 0.7)"]:is(.notion-board-group,[style*="border-top-left-radius: 5px;"]){background:var(--theme--bg_dim-brown,rgba(250,246,245,0.7))!important}.notion-body:not(.dark) .notion-board-view .notion-board-group[style*="rgba(252, 245, 242, 0.7)"] a[style*=background]{background:var(--theme--bg-orange,#fff)!important}.notion-body:not(.dark) .notion-board-view [style*="rgba(252, 245, 242, 0.7)"]:is(.notion-board-group,[style*="border-top-left-radius: 5px;"]){background:var(--theme--bg_dim-orange,rgba(252,245,242,0.7))!important}.notion-body:not(.dark) .notion-board-view .notion-board-group[style*="rgba(250, 247, 237, 0.7)"] a[style*=background]{background:var(--theme--bg-yellow,#fff)!important}.notion-body:not(.dark) .notion-board-view [style*="rgba(250, 247, 237, 0.7)"]:is(.notion-board-group,[style*="border-top-left-radius: 5px;"]){background:var(--theme--bg_dim-yellow,rgba(250,247,237,0.7))!important}.notion-body:not(.dark) .notion-board-view .notion-board-group[style*="rgba(244, 248, 243, 0.7)"] a[style*=background]{background:var(--theme--bg-green,#fff)!important}.notion-body:not(.dark) .notion-board-view [style*="rgba(244, 248, 243, 0.7)"]:is(.notion-board-group,[style*="border-top-left-radius: 5px;"]){background:var(--theme--bg_dim-green,rgba(244,248,243,0.7))!important}.notion-body:not(.dark) .notion-board-view .notion-board-group[style*="rgba(241, 248, 251, 0.7)"] a[style*=background]{background:var(--theme--bg-blue,#fff)!important}.notion-body:not(.dark) .notion-board-view [style*="rgba(241, 248, 251, 0.7)"]:is(.notion-board-group,[style*="border-top-left-radius: 5px;"]){background:var(--theme--bg_dim-blue,rgba(241,248,251,0.7))!important}.notion-body:not(.dark) .notion-board-view .notion-board-group[style*="rgba(249, 246, 252, 0.7)"] a[style*=background]{background:var(--theme--bg-purple,#fff)!important}.notion-body:not(.dark) .notion-board-view [style*="rgba(249, 246, 252, 0.7)"]:is(.notion-board-group,[style*="border-top-left-radius: 5px;"]){background:var(--theme--bg_dim-purple,rgba(249,246,252,0.7))!important}.notion-body:not(.dark) .notion-board-view .notion-board-group[style*="rgba(251, 245, 251, 0.7)"] a[style*=background]{background:var(--theme--bg-pink,#fff)!important}.notion-body:not(.dark) .notion-board-view [style*="rgba(251, 245, 251, 0.7)"]:is(.notion-board-group,[style*="border-top-left-radius: 5px;"]){background:var(--theme--bg_dim-pink,rgba(251,245,251,0.7))!important}.notion-body:not(.dark) .notion-board-view .notion-board-group[style*="rgba(253, 245, 243, 0.7)"] a[style*=background]{background:var(--theme--bg-red,#fff)!important}.notion-body:not(.dark) .notion-board-view [style*="rgba(253, 245, 243, 0.7)"]:is(.notion-board-group,[style*="border-top-left-radius: 5px;"]){background:var(--theme--bg_dim-red,rgba(253,245,243,0.7))!important}.notion-body:not(.dark) [style*="background: rgba(255, 212, 0, 0.14)"]{background:var(--theme--bg-yellow,rgba(255,212,0,0.14))!important}.notion-body:not(.dark) .notion-callout-block>div>[style*="background:"][style*="rgb(241, 241, 239)"]{background:var(--theme--bg_dim-gray,#f1f1ef)!important}.notion-body:not(.dark) .notion-callout-block>div>[style*="background:"][style*="rgb(244, 238, 238)"]{background:var(--theme--bg_dim-brown,#f4eeee)!important}.notion-body:not(.dark) .notion-callout-block>div>[style*="background:"][style*="rgb(251, 236, 221)"]{background:var(--theme--bg_dim-orange,#fbecdd)!important}.notion-body:not(.dark) .notion-callout-block>div>[style*="background:"][style*="rgb(251, 243, 219)"]{background:var(--theme--bg_dim-yellow,#fbf3db)!important}.notion-body:not(.dark) .notion-callout-block>div>[style*="background:"][style*="rgb(237, 243, 236)"]{background:var(--theme--bg_dim-green,#edf3ec)!important}.notion-body:not(.dark) .notion-callout-block>div>[style*="background:"][style*="rgb(231, 243, 248)"]{background:var(--theme--bg_dim-blue,#e7f3f8)!important}.notion-body:not(.dark) .notion-callout-block>div>[style*="background:"][style*="rgba(244, 240, 247, 0.8)"]{background:var(--theme--bg_dim-purple,rgba(244,240,247,0.8))!important}.notion-body:not(.dark) .notion-callout-block>div>[style*="background:"][style*="rgba(249, 238, 243, 0.8)"]{background:var(--theme--bg_dim-pink,rgba(249,238,243,0.8))!important}.notion-body:not(.dark) .notion-callout-block>div>[style*="background:"][style*="rgb(253, 235, 236)"]{background:var(--theme--bg_dim-red,#fdebec)!important}[style*="height: 18px; border-radius: 3px; background"][style*="rgba(206, 205, 202, 0.5)"]{background:var(--theme--bg-light_gray,rgba(206,205,202,0.5))!important}[style*="background-color: rgb(35, 131, 226)"] svg[style*=fill],[style*="background: rgb(35, 131, 226)"] svg[style*=fill]{fill:var(--theme--accent-primary_contrast,#fff)!important}.notion-body:not(.dark) ::-webkit-scrollbar-track{background:var(--theme--scrollbar-track,#EDECE9)!important}.notion-body:not(.dark) ::-webkit-scrollbar-thumb{background:var(--theme--scrollbar-thumb,#D3D1CB)!important}.notion-body:not(.dark) ::-webkit-scrollbar-thumb:hover{background:var(--theme--scrollbar-thumb_hover,#AEACA6)!important}.notion-body:not(.dark) .notion-text-block .notion-enable-hover[style*=mono][style*="color:#EB5757"]{color:var(--theme--code-inline_fg,#EB5757)!important}.notion-body:not(.dark) .notion-text-block .notion-enable-hover[style*=mono][style*="background:rgba(135,131,120,0.15)"]{background:var(--theme--code-inline_bg,rgba(135,131,120,0.15))!important}.notion-body:not(.dark) .notion-code-block>[style*=mono]{color:var(--theme--code-block_fg,#37352f)!important}.notion-body:not(.dark) .notion-code-block>div>[style*=background]{background:var(--theme--code-block_bg,#f7f6f3)!important}.notion-body:not(.dark) .notion-code-block .token.keyword{color:var(--theme--code-keyword,#07a)!important}.notion-body:not(.dark) .notion-code-block .token.builtin{color:var(--theme--code-builtin,#690)!important}.notion-body:not(.dark) .notion-code-block .token.class-name{color:var(--theme--code-class_name,#dd4a68)!important}.notion-body:not(.dark) .notion-code-block .token.function{color:var(--theme--code-function,#dd4a68)!important}.notion-body:not(.dark) .notion-code-block .token.boolean{color:var(--theme--code-boolean,#905)!important}.notion-body:not(.dark) .notion-code-block .token.number{color:var(--theme--code-number,#905)!important}.notion-body:not(.dark) .notion-code-block .token.string{color:var(--theme--code-string,#690)!important}.notion-body:not(.dark) .notion-code-block .token.char{color:var(--theme--code-char,#690)!important}.notion-body:not(.dark) .notion-code-block .token.symbol{color:var(--theme--code-symbol,#905)!important}.notion-body:not(.dark) .notion-code-block .token.regex{color:var(--theme--code-regex,#e90)!important}.notion-body:not(.dark) .notion-code-block .token.url{color:var(--theme--code-url,#9a6e3a)!important}.notion-body:not(.dark) .notion-code-block .token.operator{color:var(--theme--code-operator,#9a6e3a)!important}.notion-body:not(.dark) .notion-code-block .token.variable{color:var(--theme--code-variable,#e90)!important}.notion-body:not(.dark) .notion-code-block .token.constant{color:var(--theme--code-constant,#905)!important}.notion-body:not(.dark) .notion-code-block .token.property{color:var(--theme--code-property,#905)!important}.notion-body:not(.dark) .notion-code-block .token.punctuation{color:var(--theme--code-punctuation,#999)!important}.notion-body:not(.dark) .notion-code-block .token.important{color:var(--theme--code-important,#e90)!important}.notion-body:not(.dark) .notion-code-block .token.comment{color:var(--theme--code-comment,#708090)!important}.notion-body:not(.dark) .notion-code-block .token.tag{color:var(--theme--code-tag,#905)!important}.notion-body:not(.dark) .notion-code-block .token.attr-name{color:var(--theme--code-attr_name,#690)!important}.notion-body:not(.dark) .notion-code-block .token.attr-value{color:var(--theme--code-attr_value,#07a)!important}.notion-body:not(.dark) .notion-code-block .token.namespace{color:var(--theme--code-namespace,#37352f)!important}.notion-body:not(.dark) .notion-code-block .token.prolog{color:var(--theme--code-prolog,#708090)!important}.notion-body:not(.dark) .notion-code-block .token.doctype{color:var(--theme--code-doctype,#708090)!important}.notion-body:not(.dark) .notion-code-block .token.cdata{color:var(--theme--code-cdata,#708090)!important}.notion-body:not(.dark) .notion-code-block .token.entity{color:var(--theme--code-entity,#9a6e3a)!important}.notion-body:not(.dark) .notion-code-block .token.atrule{color:var(--theme--code-atrule,#07a)!important}.notion-body:not(.dark) .notion-code-block .token.selector{color:var(--theme--code-selector,#690)!important}.notion-body:not(.dark) .notion-code-block .token.inserted{color:var(--theme--code-inserted,#690)!important}.notion-body:not(.dark) .notion-code-block .token.deleted{color:var(--theme--code-deleted,#905)!important}[style*="Segoe UI"]{font-family:var(--theme--font-sans, ui-sans-serif),ui-sans-serif,-apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,"Apple Color Emoji",Arial,sans-serif,"Segoe UI Emoji","Segoe UI Symbol"!important}[style*=Georgia]{font-family:var(--theme--font-serif, Lyon-Text),Lyon-Text,Georgia,YuMincho,"Yu Mincho","Hiragino Mincho ProN","Hiragino Mincho Pro","Songti TC","Songti SC",SimSun,"Nanum Myeongjo",NanumMyeongjo,Batang,serif!important}[style*=iawriter-mono]{font-family:var(--theme--font-mono, iawriter-mono),iawriter-mono,Nitti,Menlo,Courier,monospace!important}[style*=SFMono-Regular]{font-family:var(--theme--font-code, SFMono-Regular),SFMono-Regular,Consolas,"Liberation Mono",Menlo,Courier,monospace!important}.notion-body.dark [style*=" color: rgb(211, 211, 211)"],.notion-body.dark [style*=" color: rgb(255, 255, 255)"],.notion-body.dark [style*=" color: rgba(255, 255, 255, 0.804)"],.notion-body.dark [style*=" color: rgba(255, 255, 255, 0.81)"],.notion-body.dark [style*=" color:rgb(211, 211, 211)"],.notion-body.dark [style*=" color:rgb(255, 255, 255)"],.notion-body.dark [style*=" color:rgba(255, 255, 255, 0.804)"],.notion-body.dark [style*=" color:rgba(255, 255, 255, 0.81)"],.notion-body.dark [style*=";color: rgb(211, 211, 211)"],.notion-body.dark [style*=";color: rgb(255, 255, 255)"],.notion-body.dark [style*=";color: rgba(255, 255, 255, 0.804)"],.notion-body.dark [style*=";color: rgba(255, 255, 255, 0.81)"],.notion-body.dark [style*=";color:rgb(211, 211, 211)"],.notion-body.dark [style*=";color:rgb(255, 255, 255)"],.notion-body.dark [style*=";color:rgba(255, 255, 255, 0.804)"],.notion-body.dark [style*=";color:rgba(255, 255, 255, 0.81)"],.notion-body.dark [style*="fill: rgb(211, 211, 211)"],.notion-body.dark [style*="fill: rgb(255, 255, 255)"],.notion-body.dark [style*="fill: rgba(255, 255, 255, 0.804)"],.notion-body.dark [style*="fill: rgba(255, 255, 255, 0.81)"],.notion-body.dark [style*="fill:rgb(211, 211, 211)"],.notion-body.dark [style*="fill:rgb(255, 255, 255)"],.notion-body.dark [style*="fill:rgba(255, 255, 255, 0.804)"],.notion-body.dark [style*="fill:rgba(255, 255, 255, 0.81)"],.notion-body.dark [style^="color: rgb(211, 211, 211)"],.notion-body.dark [style^="color: rgb(255, 255, 255)"],.notion-body.dark [style^="color: rgba(255, 255, 255, 0.804)"],.notion-body.dark [style^="color: rgba(255, 255, 255, 0.81)"],.notion-body.dark [style^="color:rgb(211, 211, 211)"],.notion-body.dark [style^="color:rgb(255, 255, 255)"],.notion-body.dark [style^="color:rgba(255, 255, 255, 0.804)"],.notion-body.dark [style^="color:rgba(255, 255, 255, 0.81)"]{color:var(--theme--fg-primary,rgba(255,255,255,0.81))!important;caret-color:var(--theme--fg-primary,rgba(255,255,255,0.81))!important;text-decoration-color:currentColor!important;fill:var(--theme--fg-primary,rgba(255,255,255,0.81))!important}.notion-body.dark .rdp-day.rdp-day_outside,.notion-body.dark .rdp-head_cell,.notion-body.dark .rdp-nav_icon,.notion-body.dark ::placeholder,.notion-body.dark [style*=" color: rgb(127, 127, 127)"],.notion-body.dark [style*=" color: rgb(155, 155, 155)"],.notion-body.dark [style*=" color: rgba(255, 255, 255, 0.13)"],.notion-body.dark [style*=" color: rgba(255, 255, 255, 0.282)"],.notion-body.dark [style*=" color: rgba(255, 255, 255, 0.443)"],.notion-body.dark [style*=" color: rgba(255, 255, 255, 0.445)"],.notion-body.dark [style*=" color:rgb(127, 127, 127)"],.notion-body.dark [style*=" color:rgb(155, 155, 155)"],.notion-body.dark [style*=" color:rgba(255, 255, 255, 0.13)"],.notion-body.dark [style*=" color:rgba(255, 255, 255, 0.282)"],.notion-body.dark [style*=" color:rgba(255, 255, 255, 0.443)"],.notion-body.dark [style*=" color:rgba(255, 255, 255, 0.445)"],.notion-body.dark [style*=";color: rgb(127, 127, 127)"],.notion-body.dark [style*=";color: rgb(155, 155, 155)"],.notion-body.dark [style*=";color: rgba(255, 255, 255, 0.13)"],.notion-body.dark [style*=";color: rgba(255, 255, 255, 0.282)"],.notion-body.dark [style*=";color: rgba(255, 255, 255, 0.443)"],.notion-body.dark [style*=";color: rgba(255, 255, 255, 0.445)"],.notion-body.dark [style*=";color:rgb(127, 127, 127)"],.notion-body.dark [style*=";color:rgb(155, 155, 155)"],.notion-body.dark [style*=";color:rgba(255, 255, 255, 0.13)"],.notion-body.dark [style*=";color:rgba(255, 255, 255, 0.282)"],.notion-body.dark [style*=";color:rgba(255, 255, 255, 0.443)"],.notion-body.dark [style*=";color:rgba(255, 255, 255, 0.445)"],.notion-body.dark [style*="fill: rgb(127, 127, 127)"],.notion-body.dark [style*="fill: rgb(155, 155, 155)"],.notion-body.dark [style*="fill: rgba(255, 255, 255, 0.13)"],.notion-body.dark [style*="fill: rgba(255, 255, 255, 0.282)"],.notion-body.dark [style*="fill: rgba(255, 255, 255, 0.443)"],.notion-body.dark [style*="fill: rgba(255, 255, 255, 0.445)"],.notion-body.dark [style*="fill:rgb(127, 127, 127)"],.notion-body.dark [style*="fill:rgb(155, 155, 155)"],.notion-body.dark [style*="fill:rgba(255, 255, 255, 0.13)"],.notion-body.dark [style*="fill:rgba(255, 255, 255, 0.282)"],.notion-body.dark [style*="fill:rgba(255, 255, 255, 0.443)"],.notion-body.dark [style*="fill:rgba(255, 255, 255, 0.445)"],.notion-body.dark [style^="color: rgb(127, 127, 127)"],.notion-body.dark [style^="color: rgb(155, 155, 155)"],.notion-body.dark [style^="color: rgba(255, 255, 255, 0.13)"],.notion-body.dark [style^="color: rgba(255, 255, 255, 0.282)"],.notion-body.dark [style^="color: rgba(255, 255, 255, 0.443)"],.notion-body.dark [style^="color: rgba(255, 255, 255, 0.445)"],.notion-body.dark [style^="color:rgb(127, 127, 127)"],.notion-body.dark [style^="color:rgb(155, 155, 155)"],.notion-body.dark [style^="color:rgba(255, 255, 255, 0.13)"],.notion-body.dark [style^="color:rgba(255, 255, 255, 0.282)"],.notion-body.dark [style^="color:rgba(255, 255, 255, 0.443)"],.notion-body.dark [style^="color:rgba(255, 255, 255, 0.445)"]{color:var(--theme--fg-secondary,#9b9b9b)!important;caret-color:var(--theme--fg-secondary,#9b9b9b)!important;text-decoration-color:currentColor!important;fill:var(--theme--fg-secondary,#9b9b9b)!important}.notion-body.dark :is([style*="caret-color:rgb(211, 211, 211)"],[style*="caret-color: rgb(211, 211, 211)"]),.notion-body.dark :is([style*="caret-color:rgb(255, 255, 255)"],[style*="caret-color: rgb(255, 255, 255)"]),.notion-body.dark :is([style*="caret-color:rgba(255, 255, 255, 0.804)"],[style*="caret-color: rgba(255, 255, 255, 0.804)"]),.notion-body.dark :is([style*="caret-color:rgba(255, 255, 255, 0.81)"],[style*="caret-color: rgba(255, 255, 255, 0.81)"]){caret-color:var(--theme--fg-primary,rgba(255,255,255,0.81))!important}.notion-body.dark ::placeholder,.notion-body.dark :is([style*="caret-color:rgb(127, 127, 127)"],[style*="caret-color: rgb(127, 127, 127)"]),.notion-body.dark :is([style*="caret-color:rgb(155, 155, 155)"],[style*="caret-color: rgb(155, 155, 155)"]),.notion-body.dark :is([style*="caret-color:rgba(255, 255, 255, 0.13)"],[style*="caret-color: rgba(255, 255, 255, 0.13)"]),.notion-body.dark :is([style*="caret-color:rgba(255, 255, 255, 0.282)"],[style*="caret-color: rgba(255, 255, 255, 0.282)"]),.notion-body.dark :is([style*="caret-color:rgba(255, 255, 255, 0.443)"],[style*="caret-color: rgba(255, 255, 255, 0.443)"]),.notion-body.dark :is([style*="caret-color:rgba(255, 255, 255, 0.445)"],[style*="caret-color: rgba(255, 255, 255, 0.445)"]){caret-color:var(--theme--fg-secondary,#9b9b9b)!important}.notion-body.dark [style*="-webkit-text-fill-color:"]{-webkit-text-fill-color:var(--theme--fg-secondary,#9b9b9b)!important}.notion-body.dark [style*="rgb(37, 37, 37)"]:is([style*="border:"],[style*="border-top:"],[style*="border-left:"],[style*="border-bottom:"],[style*="border-right:"]),[style*="1px solid rgb(47, 47, 47)"]:is([style*="border:"],[style*="border-top:"],[style*="border-left:"],[style*="border-bottom:"],[style*="border-right:"]),[style*="1px solid rgba(255, 255, 255, 0.094)"]:is([style*="border:"],[style*="border-top:"],[style*="border-left:"],[style*="border-bottom:"],[style*="border-right:"]),[style*="1px solid rgba(255, 255, 255, 0.13)"]:is([style*="border:"],[style*="border-top:"],[style*="border-left:"],[style*="border-bottom:"],[style*="border-right:"]),[style*="2px solid rgba(255, 255, 255, 0.81)"]:is([style*="border:"],[style*="border-top:"],[style*="border-left:"],[style*="border-bottom:"],[style*="border-right:"]){border-color:var(--theme--fg-border,#2f2f2f)!important}.notion-body.dark [style*="; box-shadow: rgba(255, 255, 255, 0.094) 0px -1px 0px;"]{box-shadow:var(--theme--fg-border,#2f2f2f)0-1px 0!important}.notion-body.dark [style*="; box-shadow: rgba(15, 15, 15, 0.2) 0px 0px 0px 1px inset;"]{box-shadow:var(--theme--fg-border,#2f2f2f)0 0 0 1px inset!important}.notion-body.dark [style*="; box-shadow: rgb(25, 25, 25) -3px 0px 0px, rgb(47, 47, 47) 0px 1px 0px;"]{box-shadow:transparent -3px 0 0,transparent 0 1px 0!important}.notion-body.dark [style*="; box-shadow: rgba(255, 255, 255, 0.05) -1px 0px 0px 0px inset;"]{box-shadow:var(--theme--fg-border,#2f2f2f) -1px 0 0 0 inset!important}.notion-body.dark [style*="; box-shadow: rgb(47, 47, 47) 0px -1px 0px inset;"]{box-shadow:var(--theme--fg-border,#2f2f2f)0-1px 0 inset!important}.notion-body.dark [style*="; box-shadow: rgba(255, 255, 255, 0.13) 1px 0px 0px inset;"]{box-shadow:var(--theme--fg-border,#2f2f2f) 1px 0 0 inset!important}.notion-body.dark [style*="; box-shadow: rgb(47, 47, 47) 0px 1px 0px;"]{box-shadow:var(--theme--fg-border,#2f2f2f)0 1px 0!important}.notion-body.dark [style*="box-shadow: rgb(47, 47, 47) -1px 0px 0px;"]{box-shadow:var(--theme--fg-border,#2f2f2f) -1px 0 0!important}.notion-body.dark [style*="height: 1px;"][style*=background]{background:var(--theme--fg-border,#2f2f2f)!important}.notion-body.dark .notion-code-block span.token[style*="rgba(155, 155, 155, 1)"],.notion-body.dark .notion-enable-hover[style*="rgba(155, 155, 155, 1)"],.notion-body.dark .notion-text-block>[style*="color:"][style*="fill:"][style*="rgb(155, 155, 155)"]{color:var(--theme--fg-gray,#9b9b9b)!important;fill:var(--theme--fg-gray,#9b9b9b)!important}.notion-body.dark .notion-code-block span.token[style*="rgba(186, 133, 111, 1)"],.notion-body.dark .notion-enable-hover[style*="rgba(186, 133, 111, 1)"],.notion-body.dark .notion-text-block>[style*="color:"][style*="fill:"][style*="rgb(186, 133, 111)"]{color:var(--theme--fg-brown,#ba856f)!important;fill:var(--theme--fg-brown,#ba856f)!important}.notion-body.dark .notion-code-block span.token[style*="rgba(199, 125, 72, 1)"],.notion-body.dark .notion-enable-hover[style*="rgba(199, 125, 72, 1)"],.notion-body.dark .notion-text-block>[style*="color:"][style*="fill:"][style*="rgb(199, 125, 72)"]{color:var(--theme--fg-orange,#c77d48)!important;fill:var(--theme--fg-orange,#c77d48)!important}.notion-body.dark .notion-code-block span.token[style*="rgba(202, 152, 73, 1)"],.notion-body.dark .notion-enable-hover[style*="rgba(202, 152, 73, 1)"],.notion-body.dark .notion-text-block>[style*="color:"][style*="fill:"][style*="rgb(202, 152, 73)"]{color:var(--theme--fg-yellow,#ca9849)!important;fill:var(--theme--fg-yellow,#ca9849)!important}.notion-body.dark .notion-code-block span.token[style*="rgba(82, 158, 114, 1)"],.notion-body.dark .notion-enable-hover[style*="rgba(82, 158, 114, 1)"],.notion-body.dark .notion-text-block>[style*="color:"][style*="fill:"][style*="rgb(82, 158, 114)"]{color:var(--theme--fg-green,#529e72)!important;fill:var(--theme--fg-green,#529e72)!important}.notion-body.dark .notion-code-block span.token[style*="rgba(94, 135, 201, 1)"],.notion-body.dark .notion-enable-hover[style*="rgba(94, 135, 201, 1)"],.notion-body.dark .notion-text-block>[style*="color:"][style*="fill:"][style*="rgb(94, 135, 201)"]{color:var(--theme--fg-blue,#5e87c9)!important;fill:var(--theme--fg-blue,#5e87c9)!important}.notion-body.dark .notion-code-block span.token[style*="rgba(157, 104, 211, 1)"],.notion-body.dark .notion-enable-hover[style*="rgba(157, 104, 211, 1)"],.notion-body.dark .notion-text-block>[style*="color:"][style*="fill:"][style*="rgb(157, 104, 211)"]{color:var(--theme--fg-purple,#9d68d3)!important;fill:var(--theme--fg-purple,#9d68d3)!important}.notion-body.dark .notion-code-block span.token[style*="rgba(209, 87, 150, 1)"],.notion-body.dark .notion-enable-hover[style*="rgba(209, 87, 150, 1)"],.notion-body.dark .notion-text-block>[style*="color:"][style*="fill:"][style*="rgb(209, 87, 150)"]{color:var(--theme--fg-pink,#d15796)!important;fill:var(--theme--fg-pink,#d15796)!important}.notion-body.dark .notion-code-block span.token[style*="rgba(223, 84, 82, 1)"],.notion-body.dark .notion-enable-hover[style*="rgba(223, 84, 82, 1)"],.notion-body.dark .notion-text-block>[style*="color:"][style*="fill:"][style*="rgb(223, 84, 82)"]{color:var(--theme--fg-red,#df5452)!important;fill:var(--theme--fg-red,#df5452)!important}.notion-body.dark [style*="background-color: rgb(25, 25, 25)"],.notion-body.dark [style*="background-color: rgb(37, 37, 37)"],.notion-body.dark [style*="background-color: rgba(255, 255, 255, 0.13)"],.notion-body.dark [style*="background-color:rgb(25, 25, 25)"],.notion-body.dark [style*="background-color:rgb(37, 37, 37)"],.notion-body.dark [style*="background-color:rgba(255, 255, 255, 0.13)"],.notion-body.dark [style*="background: rgb(25, 25, 25)"],.notion-body.dark [style*="background: rgb(37, 37, 37)"],.notion-body.dark [style*="background: rgba(255, 255, 255, 0.13)"],.notion-body.dark [style*="background:rgb(25, 25, 25)"],.notion-body.dark [style*="background:rgb(37, 37, 37)"],.notion-body.dark [style*="background:rgba(255, 255, 255, 0.13)"]{background:var(--theme--bg-primary,#191919)!important}.notion-body.dark .notion-focusable-within [style*=background],.notion-body.dark [style*="background-color: rgb(32, 32, 32)"],.notion-body.dark [style*="background-color: rgb(47, 47, 47)"],.notion-body.dark [style*="background-color: rgba(255, 255, 255, 0.0"],.notion-body.dark [style*="background-color:rgb(32, 32, 32)"],.notion-body.dark [style*="background-color:rgb(47, 47, 47)"],.notion-body.dark [style*="background-color:rgba(255, 255, 255, 0.0"],.notion-body.dark [style*="background: rgb(32, 32, 32)"],.notion-body.dark [style*="background: rgb(47, 47, 47)"],.notion-body.dark [style*="background: rgba(255, 255, 255, 0.0"],.notion-body.dark [style*="background:rgb(32, 32, 32)"],.notion-body.dark [style*="background:rgb(47, 47, 47)"],.notion-body.dark [style*="background:rgba(255, 255, 255, 0.0"]{background:var(--theme--bg-secondary,#202020)!important}[style*="linear-gradient(to left, rgb(25, 25, 25) 20%, rgba(25, 25, 25, 0) 100%)"]{background-image:linear-gradient(to left,var(--theme--bg-primary,#191919) 20%,transparent 100%)!important}[style*="linear-gradient(to right, rgb(25, 25, 25) 20%, rgba(25, 25, 25, 0) 100%)"]{background-image:linear-gradient(to right,var(--theme--bg-primary,#191919) 20%,transparent 100%)!important}.notion-body.dark :is([style*="background: rgb(47, 47, 47)"],[style*="background-color: rgb(47, 47, 47)"])[style*="transition: background"]:hover,.notion-body.dark :is([style*="background: rgba(255, 255, 255, 0.055)"],[style*="background-color: rgba(255, 255, 255, 0.055)"]),.notion-body.dark [style*="height: 14px; width: 26px; border-radius: 44px;"][style*=rgba]{background:var(--theme--bg-hover,rgba(255,255,255,0.055))!important}.notion-body.dark .notion-selectable .notion-enable-hover[style*="background:"][style*="rgba(47, 47, 47, 1)"],.notion-body.dark .notion-text-block>[style*="background:"][style*="rgb(47, 47, 47)"]{background:var(--theme--bg-gray,#2f2f2f)!important}.notion-body.dark .notion-selectable .notion-enable-hover[style*="background:"][style*="rgba(74, 50, 40, 1)"],.notion-body.dark .notion-text-block>[style*="background:"][style*="rgb(74, 50, 40)"]{background:var(--theme--bg-brown,#4a3228)!important}.notion-body.dark .notion-selectable .notion-enable-hover[style*="background:"][style*="rgba(92, 59, 35, 1)"],.notion-body.dark .notion-text-block>[style*="background:"][style*="rgb(92, 59, 35)"]{background:var(--theme--bg-orange,#5c3b23)!important}.notion-body.dark .notion-selectable .notion-enable-hover[style*="background:"][style*="rgba(86, 67, 40, 1)"],.notion-body.dark .notion-text-block>[style*="background:"][style*="rgb(86, 67, 40)"]{background:var(--theme--bg-yellow,#564328)!important}.notion-body.dark .notion-selectable .notion-enable-hover[style*="background:"][style*="rgba(36, 61, 48, 1)"],.notion-body.dark .notion-text-block>[style*="background:"][style*="rgb(36, 61, 48)"]{background:var(--theme--bg-green,#243d30)!important}.notion-body.dark .notion-selectable .notion-enable-hover[style*="background:"][style*="rgba(20, 58, 78, 1)"],.notion-body.dark .notion-text-block>[style*="background:"][style*="rgb(20, 58, 78)"]{background:var(--theme--bg-blue,#143a4e)!important}.notion-body.dark .notion-selectable .notion-enable-hover[style*="background:"][style*="rgba(60, 45, 73, 1)"],.notion-body.dark .notion-text-block>[style*="background:"][style*="rgb(60, 45, 73)"]{background:var(--theme--bg-purple,#3c2d49)!important}.notion-body.dark .notion-selectable .notion-enable-hover[style*="background:"][style*="rgba(78, 44, 60, 1)"],.notion-body.dark .notion-text-block>[style*="background:"][style*="rgb(78, 44, 60)"]{background:var(--theme--bg-pink,#4e2c3c)!important}.notion-body.dark .notion-selectable .notion-enable-hover[style*="background:"][style*="rgba(82, 46, 42, 1)"],.notion-body.dark .notion-text-block>[style*="background:"][style*="rgb(82, 46, 42)"]{background:var(--theme--bg-red,#522e2a)!important}.notion-body.dark .notion-collection_view-block [style*="height: 14px; border-radius: 3px; padding-left: 6px;"][style*="rgb(55, 55, 55)"],.notion-body.dark .notion-timeline-item-properties [style*="height: 18px; border-radius: 3px; padding-left: 8px;"][style*="rgb(55, 55, 55)"],.notion-body.dark [style*="height: 20px; border-radius: 3px; padding-left: 6px;"][style*="background:"][style*="rgb(55, 55, 55)"]{background:var(--theme--bg-light_gray,#373737)!important}.notion-body.dark .notion-collection_view-block [style*="height: 14px; border-radius: 3px; padding-left: 6px;"][style*="rgb(90, 90, 90)"],.notion-body.dark .notion-timeline-item-properties [style*="height: 18px; border-radius: 3px; padding-left: 8px;"][style*="rgb(90, 90, 90)"],.notion-body.dark [style*="height: 20px; border-radius: 3px; padding-left: 6px;"][style*="background:"][style*="rgb(90, 90, 90)"]{background:var(--theme--bg-gray,#5a5a5a)!important}.notion-body.dark .notion-collection_view-block [style*="height: 14px; border-radius: 3px; padding-left: 6px;"][style*="rgb(96, 59, 44)"],.notion-body.dark .notion-timeline-item-properties [style*="height: 18px; border-radius: 3px; padding-left: 8px;"][style*="rgb(96, 59, 44)"],.notion-body.dark [style*="height: 20px; border-radius: 3px; padding-left: 6px;"][style*="background:"][style*="rgb(96, 59, 44)"]{background:var(--theme--bg-brown,#603b2c)!important}.notion-body.dark .notion-collection_view-block [style*="height: 14px; border-radius: 3px; padding-left: 6px;"][style*="rgb(133, 76, 29)"],.notion-body.dark .notion-timeline-item-properties [style*="height: 18px; border-radius: 3px; padding-left: 8px;"][style*="rgb(133, 76, 29)"],.notion-body.dark [style*="height: 20px; border-radius: 3px; padding-left: 6px;"][style*="background:"][style*="rgb(133, 76, 29)"]{background:var(--theme--bg-orange,#854c1d)!important}.notion-body.dark .notion-collection_view-block [style*="height: 14px; border-radius: 3px; padding-left: 6px;"][style*="rgb(137, 99, 42)"],.notion-body.dark .notion-timeline-item-properties [style*="height: 18px; border-radius: 3px; padding-left: 8px;"][style*="rgb(137, 99, 42)"],.notion-body.dark [style*="height: 20px; border-radius: 3px; padding-left: 6px;"][style*="background:"][style*="rgb(137, 99, 42)"]{background:var(--theme--bg-yellow,#89632a)!important}.notion-body.dark .notion-collection_view-block [style*="height: 14px; border-radius: 3px; padding-left: 6px;"][style*="rgb(43, 89, 63)"],.notion-body.dark .notion-timeline-item-properties [style*="height: 18px; border-radius: 3px; padding-left: 8px;"][style*="rgb(43, 89, 63)"],.notion-body.dark [style*="height: 20px; border-radius: 3px; padding-left: 6px;"][style*="background:"][style*="rgb(43, 89, 63)"]{background:var(--theme--bg-green,#2b593f)!important}.notion-body.dark .notion-collection_view-block [style*="height: 14px; border-radius: 3px; padding-left: 6px;"][style*="rgb(40, 69, 108)"],.notion-body.dark .notion-timeline-item-properties [style*="height: 18px; border-radius: 3px; padding-left: 8px;"][style*="rgb(40, 69, 108)"],.notion-body.dark [style*="height: 20px; border-radius: 3px; padding-left: 6px;"][style*="background:"][style*="rgb(40, 69, 108)"]{background:var(--theme--bg-blue,#28456c)!important}.notion-body.dark .notion-collection_view-block [style*="height: 14px; border-radius: 3px; padding-left: 6px;"][style*="rgb(73, 47, 100)"],.notion-body.dark .notion-timeline-item-properties [style*="height: 18px; border-radius: 3px; padding-left: 8px;"][style*="rgb(73, 47, 100)"],.notion-body.dark [style*="height: 20px; border-radius: 3px; padding-left: 6px;"][style*="background:"][style*="rgb(73, 47, 100)"]{background:var(--theme--bg-purple,#492f64)!important}.notion-body.dark .notion-collection_view-block [style*="height: 14px; border-radius: 3px; padding-left: 6px;"][style*="rgb(105, 49, 76)"],.notion-body.dark .notion-timeline-item-properties [style*="height: 18px; border-radius: 3px; padding-left: 8px;"][style*="rgb(105, 49, 76)"],.notion-body.dark [style*="height: 20px; border-radius: 3px; padding-left: 6px;"][style*="background:"][style*="rgb(105, 49, 76)"]{background:var(--theme--bg-pink,#69314c)!important}.notion-body.dark .notion-collection_view-block [style*="height: 14px; border-radius: 3px; padding-left: 6px;"][style*="rgb(110, 54, 48)"],.notion-body.dark .notion-timeline-item-properties [style*="height: 18px; border-radius: 3px; padding-left: 8px;"][style*="rgb(110, 54, 48)"],.notion-body.dark [style*="height: 20px; border-radius: 3px; padding-left: 6px;"][style*="background:"][style*="rgb(110, 54, 48)"]{background:var(--theme--bg-red,#6e3630)!important}.notion-body.dark [style*="background: rgba(255, 212, 0, 0.14)"]{background:var(--theme--bg-yellow,rgba(255,212,0,0.14))!important}.notion-body.dark .notion-callout-block>div>[style*="background:"][style*="rgb(37, 37, 37)"]{background:var(--theme--bg_dim-gray,#252525)!important}.notion-body.dark .notion-callout-block>div>[style*="background:"][style*="rgb(47, 39, 35)"]{background:var(--theme--bg_dim-brown,#2f2723)!important}.notion-body.dark .notion-callout-block>div>[style*="background:"][style*="rgb(56, 40, 30)"]{background:var(--theme--bg_dim-orange,#38281e)!important}.notion-body.dark .notion-callout-block>div>[style*="background:"][style*="rgb(57, 46, 30)"]{background:var(--theme--bg_dim-yellow,#392e1e)!important}.notion-body.dark .notion-callout-block>div>[style*="background:"][style*="rgb(34, 43, 38)"]{background:var(--theme--bg_dim-green,#222b26)!important}.notion-body.dark .notion-callout-block>div>[style*="background:"][style*="rgb(29, 40, 46)"]{background:var(--theme--bg_dim-blue,#1d282e)!important}.notion-body.dark .notion-callout-block>div>[style*="background:"][style*="rgb(43, 36, 49)"]{background:var(--theme--bg_dim-purple,#2b2431)!important}.notion-body.dark .notion-callout-block>div>[style*="background:"][style*="rgb(48, 34, 40)"]{background:var(--theme--bg_dim-pink,#302228)!important}.notion-body.dark .notion-callout-block>div>[style*="background:"][style*="rgb(54, 36, 34)"]{background:var(--theme--bg_dim-red,#362422)!important}[style*="height: 18px; border-radius: 3px; background"][style*="rgba(255, 255, 255, 0.094)"]{background:var(--theme--bg-light_gray,rgba(255,255,255,0.094))!important}[style*="color: rgb(35, 131, 226)"],[style*="fill: rgb(35, 131, 226)"]{color:var(--theme--accent-primary,#2383e2)!important}[style*="background-color: rgb(35, 131, 226)"],[style*="background: rgb(35, 131, 226)"]{background:var(--theme--accent-primary,#2383e2)!important;color:var(--theme--accent-primary_contrast,#fff)!important;fill:var(--theme--accent-primary_contrast,#fff)!important}[style*="border-radius: 44px;"]>[style*="border-radius: 44px; background: white;"]{background:var(--theme--accent-primary_contrast,#fff)!important}[style*="background-color: rgb(0, 117, 211)"],[style*="background: rgb(0, 117, 211)"]{background:var(--theme--accent-primary_hover,#0075d3)!important;color:var(--theme--accent-primary_contrast,#fff)!important;fill:var(--theme--accent-primary_contrast,#fff)!important}.notion-table-selection-overlay [style*="border: 2px solid"]{border-color:var(--theme--accent-primary,#2383e2)!important}.notion-focusable-within:focus-within{box-shadow:var(--theme--accent-primary,#2383e2)0 0 0 1px inset,var(--theme--accent-primary,#2383e2)0 0 0 2px!important}.notion-focusable:focus-visible{box-shadow:var(--theme--accent-primary,#2383e2)0 0 0 1px inset,var(--theme--accent-primary,#2383e2)0 0 0 2px!important}[style*="box-shadow: rgb(35, 131, 226) 0px 0px 0px 2px inset"]{box-shadow:var(--theme--accent-primary,#2383e2)0 0 0 2px inset!important}#notion-app .rdp-day:not(.rdp-day_disabled):not(.rdp-day_selected):not(.rdp-day_value):not(.rdp-day_start):not(.rdp-day_end):hover,.notion-selectable-halo,::selection,[style*="background-color: rgba(35, 131, 226, 0."],[style*="background: rgba(35, 131, 226, 0."]{background:var(--theme--accent-primary_transparent,rgba(35,131,226,0.14))!important}[style*="color: rgb(180, 65, 60)"],[style*="color: rgb(205, 73, 69)"],[style*="color: rgb(211, 79, 67)"],[style*="color: rgb(235, 87, 87)"],[style*="fill: rgb(180, 65, 60)"],[style*="fill: rgb(205, 73, 69)"],[style*="fill: rgb(211, 79, 67)"],[style*="fill: rgb(235, 87, 87)"]{color:var(--theme--accent-secondary,#eb5757)!important;fill:var(--theme--accent-secondary,#eb5757)!important}#notion-app .rdp-day_today:not(.rdp-day_selected):not(.rdp-day_value):not(.rdp-day_start):not(.rdp-day_end)::after,[style*="background-color: rgb(180, 65, 60)"],[style*="background-color: rgb(205, 73, 69)"],[style*="background-color: rgb(211, 79, 67)"],[style*="background-color: rgb(235, 87, 87)"],[style*="background: rgb(180, 65, 60)"],[style*="background: rgb(205, 73, 69)"],[style*="background: rgb(211, 79, 67)"],[style*="background: rgb(235, 87, 87)"]{background:var(--theme--accent-secondary,#eb5757)!important;color:var(--theme--accent-secondary_contrast,#fff)!important;fill:var(--theme--accent-secondary_contrast,#fff)!important}#notion-app .rdp-day_today:not(.rdp-day_selected):not(.rdp-day_value):not(.rdp-day_start):not(.rdp-day_end),:is([style*="background: rgb(235, 87, 87)"],[style*="background-color: rgb(235, 87, 87)"],[style*="background: rgb(180, 65, 60)"],[style*="background-color: rgb(180, 65, 60)"],[style*="background: rgb(211, 79, 67)"],[style*="background-color: rgb(211, 79, 67)"],[style*="background: rgb(205, 73, 69)"],[style*="background-color: rgb(205, 73, 69)"]) :is([style*="fill: white;"],[style*="color: white;"]),:is([style*="background: rgb(235, 87, 87)"],[style*="background-color: rgb(235, 87, 87)"],[style*="background: rgb(180, 65, 60)"],[style*="background-color: rgb(180, 65, 60)"],[style*="background: rgb(211, 79, 67)"],[style*="background-color: rgb(211, 79, 67)"],[style*="background: rgb(205, 73, 69)"],[style*="background-color: rgb(205, 73, 69)"])+:is([style*="fill: white;"],[style*="color: white;"]){color:var(--theme--accent-secondary_contrast,#fff)!important;fill:var(--theme--accent-secondary_contrast,#fff)!important}[style*="background-color: rgba(235, 87, 87, 0.1)"],[style*="background: rgba(235, 87, 87, 0.1)"]{background:var(--theme--accent-secondary_transparent,rgba(235,87,87,0.1))!important}[style*="border-right: 1px solid rgb(180, 65, 60)"],[style*="border-right: 1px solid rgb(211, 79, 67)"],[style*="border: 1px solid rgb(110, 54, 48)"],[style*="border: 1px solid rgba(235, 87, 87, 0.5)"],[style*="border: 2px solid rgb(110, 54, 48)"],[style*="border: 2px solid rgb(227, 134, 118)"]{border-color:var(--theme--accent-secondary,#eb5757)!important}.notion-body.dark ::-webkit-scrollbar-track{background:var(--theme--scrollbar-track,rgba(202,204,206,0.04))!important}.notion-body.dark ::-webkit-scrollbar-thumb{background:var(--theme--scrollbar-thumb,#474c50)!important}.notion-body.dark ::-webkit-scrollbar-thumb:hover{background:var(--theme--scrollbar-thumb_hover,rgba(202,204,206,0.3))!important}.notion-body.dark .notion-text-block .notion-enable-hover[style*=mono][style*="color:#EB5757"]{color:var(--theme--code-inline_fg,#eb5757)!important}.notion-body.dark .notion-text-block .notion-enable-hover[style*=mono][style*="background:rgba(135,131,120,0.15)"]{background:var(--theme--code-inline_bg,rgba(135,131,120,0.15))!important}.notion-body.dark .notion-code-block>[style*=mono]{color:var(--theme--code-block_fg,rgba(255,255,255,0.81))!important}.notion-body.dark .notion-code-block>div>[style*=background]{background:var(--theme--code-block_bg,rgba(255,255,255,0.03))!important}.notion-body.dark .notion-code-block .token.keyword{color:var(--theme--code-keyword,#d1949e)!important}.notion-body.dark .notion-code-block .token.builtin{color:var(--theme--code-builtin,#bde052)!important}.notion-body.dark .notion-code-block .token.class-name{color:var(--theme--code-class_name,rgba(255,255,255,0.81))!important}.notion-body.dark .notion-code-block .token.function{color:var(--theme--code-function,rgba(255,255,255,0.81))!important}.notion-body.dark .notion-code-block .token.boolean{color:var(--theme--code-boolean,#d1949e)!important}.notion-body.dark .notion-code-block .token.number{color:var(--theme--code-number,#d1949e)!important}.notion-body.dark .notion-code-block .token.string{color:var(--theme--code-string,#bde052)!important}.notion-body.dark .notion-code-block .token.char{color:var(--theme--code-char,#bde052)!important}.notion-body.dark .notion-code-block .token.symbol{color:var(--theme--code-symbol,#d1949e)!important}.notion-body.dark .notion-code-block .token.regex{color:var(--theme--code-regex,#e90)!important}.notion-body.dark .notion-code-block .token.url{color:var(--theme--code-url,#f5b83d)!important}.notion-body.dark .notion-code-block .token.operator{color:var(--theme--code-operator,#f5b83d)!important}.notion-body.dark .notion-code-block .token.variable{color:var(--theme--code-variable,#f5b83d)!important}.notion-body.dark .notion-code-block .token.constant{color:var(--theme--code-constant,#d1949e)!important}.notion-body.dark .notion-code-block .token.property{color:var(--theme--code-property,#d1949e)!important}.notion-body.dark .notion-code-block .token.punctuation{color:var(--theme--code-punctuation,rgba(255,255,255,0.81))!important}.notion-body.dark .notion-code-block .token.important{color:var(--theme--code-important,#e90)!important}.notion-body.dark .notion-code-block .token.comment{color:var(--theme--code-comment,#998066)!important}.notion-body.dark .notion-code-block .token.tag{color:var(--theme--code-tag,#d1949e)!important}.notion-body.dark .notion-code-block .token.attr-name{color:var(--theme--code-attr_name,#bde052)!important}.notion-body.dark .notion-code-block .token.attr-value{color:var(--theme--code-attr_value,#d1949e)!important}.notion-body.dark .notion-code-block .token.namespace{color:var(--theme--code-namespace,rgba(255,255,255,0.81))!important}.notion-body.dark .notion-code-block .token.prolog{color:var(--theme--code-prolog,#998066)!important}.notion-body.dark .notion-code-block .token.doctype{color:var(--theme--code-doctype,#998066)!important}.notion-body.dark .notion-code-block .token.cdata{color:var(--theme--code-cdata,#998066)!important}.notion-body.dark .notion-code-block .token.entity{color:var(--theme--code-entity,#f5b83d)!important}.notion-body.dark .notion-code-block .token.atrule{color:var(--theme--code-atrule,#d1949e)!important}.notion-body.dark .notion-code-block .token.selector{color:var(--theme--code-selector,#bde052)!important}.notion-body.dark .notion-code-block .token.inserted{color:var(--theme--code-inserted,#bde052)!important}.notion-body.dark .notion-code-block .token.deleted{color:var(--theme--code-deleted,red)!important} \ No newline at end of file +.notion-body.dark [style*=" color: rgb(211, 211, 211)"], +.notion-body.dark [style*=" color: rgb(255, 255, 255)"], +.notion-body.dark [style*=" color: rgba(255, 255, 255, 0.804)"], +.notion-body.dark [style*=" color: rgba(255, 255, 255, 0.81)"], +.notion-body.dark [style*=" color:rgb(211, 211, 211)"], +.notion-body.dark [style*=" color:rgb(255, 255, 255)"], +.notion-body.dark [style*=" color:rgba(255, 255, 255, 0.804)"], +.notion-body.dark [style*=" color:rgba(255, 255, 255, 0.81)"], +.notion-body.dark [style*=";color: rgb(211, 211, 211)"], +.notion-body.dark [style*=";color: rgb(255, 255, 255)"], +.notion-body.dark [style*=";color: rgba(255, 255, 255, 0.804)"], +.notion-body.dark [style*=";color: rgba(255, 255, 255, 0.81)"], +.notion-body.dark [style*=";color:rgb(211, 211, 211)"], +.notion-body.dark [style*=";color:rgb(255, 255, 255)"], +.notion-body.dark [style*=";color:rgba(255, 255, 255, 0.804)"], +.notion-body.dark [style*=";color:rgba(255, 255, 255, 0.81)"], +.notion-body.dark [style*="fill: rgb(211, 211, 211)"], +.notion-body.dark [style*="fill: rgb(255, 255, 255)"], +.notion-body.dark [style*="fill: rgba(255, 255, 255, 0.804)"], +.notion-body.dark [style*="fill: rgba(255, 255, 255, 0.81)"], +.notion-body.dark [style*="fill:rgb(211, 211, 211)"], +.notion-body.dark [style*="fill:rgb(255, 255, 255)"], +.notion-body.dark [style*="fill:rgba(255, 255, 255, 0.804)"], +.notion-body.dark [style*="fill:rgba(255, 255, 255, 0.81)"], +.notion-body.dark [style^="color: rgb(211, 211, 211)"], +.notion-body.dark [style^="color: rgb(255, 255, 255)"], +.notion-body.dark [style^="color: rgba(255, 255, 255, 0.804)"], +.notion-body.dark [style^="color: rgba(255, 255, 255, 0.81)"], +.notion-body.dark [style^="color:rgb(211, 211, 211)"], +.notion-body.dark [style^="color:rgb(255, 255, 255)"], +.notion-body.dark [style^="color:rgba(255, 255, 255, 0.804)"], +.notion-body.dark [style^="color:rgba(255, 255, 255, 0.81)"] { + color: var(--theme--fg-primary, rgba(255, 255, 255, 0.81)) !important; + text-decoration-color: currentColor !important; +} +.notion-body.dark .rdp-day.rdp-day_outside, +.notion-body.dark .rdp-head_cell, +.notion-body.dark .rdp-nav_icon, +.notion-body.dark ::placeholder, +.notion-body.dark [style*=" color: rgb(127, 127, 127)"], +.notion-body.dark [style*=" color: rgb(155, 155, 155)"], +.notion-body.dark [style*=" color: rgba(255, 255, 255, 0.13)"], +.notion-body.dark [style*=" color: rgba(255, 255, 255, 0.282)"], +.notion-body.dark [style*=" color: rgba(255, 255, 255, 0.443)"], +.notion-body.dark [style*=" color: rgba(255, 255, 255, 0.445)"], +.notion-body.dark [style*=" color:rgb(127, 127, 127)"], +.notion-body.dark [style*=" color:rgb(155, 155, 155)"], +.notion-body.dark [style*=" color:rgba(255, 255, 255, 0.13)"], +.notion-body.dark [style*=" color:rgba(255, 255, 255, 0.282)"], +.notion-body.dark [style*=" color:rgba(255, 255, 255, 0.443)"], +.notion-body.dark [style*=" color:rgba(255, 255, 255, 0.445)"], +.notion-body.dark [style*=";color: rgb(127, 127, 127)"], +.notion-body.dark [style*=";color: rgb(155, 155, 155)"], +.notion-body.dark [style*=";color: rgba(255, 255, 255, 0.13)"], +.notion-body.dark [style*=";color: rgba(255, 255, 255, 0.282)"], +.notion-body.dark [style*=";color: rgba(255, 255, 255, 0.443)"], +.notion-body.dark [style*=";color: rgba(255, 255, 255, 0.445)"], +.notion-body.dark [style*=";color:rgb(127, 127, 127)"], +.notion-body.dark [style*=";color:rgb(155, 155, 155)"], +.notion-body.dark [style*=";color:rgba(255, 255, 255, 0.13)"], +.notion-body.dark [style*=";color:rgba(255, 255, 255, 0.282)"], +.notion-body.dark [style*=";color:rgba(255, 255, 255, 0.443)"], +.notion-body.dark [style*=";color:rgba(255, 255, 255, 0.445)"], +.notion-body.dark [style*="fill: rgb(127, 127, 127)"], +.notion-body.dark [style*="fill: rgb(155, 155, 155)"], +.notion-body.dark [style*="fill: rgba(255, 255, 255, 0.13)"], +.notion-body.dark [style*="fill: rgba(255, 255, 255, 0.282)"], +.notion-body.dark [style*="fill: rgba(255, 255, 255, 0.443)"], +.notion-body.dark [style*="fill: rgba(255, 255, 255, 0.445)"], +.notion-body.dark [style*="fill:rgb(127, 127, 127)"], +.notion-body.dark [style*="fill:rgb(155, 155, 155)"], +.notion-body.dark [style*="fill:rgba(255, 255, 255, 0.13)"], +.notion-body.dark [style*="fill:rgba(255, 255, 255, 0.282)"], +.notion-body.dark [style*="fill:rgba(255, 255, 255, 0.443)"], +.notion-body.dark [style*="fill:rgba(255, 255, 255, 0.445)"], +.notion-body.dark [style^="color: rgb(127, 127, 127)"], +.notion-body.dark [style^="color: rgb(155, 155, 155)"], +.notion-body.dark [style^="color: rgba(255, 255, 255, 0.13)"], +.notion-body.dark [style^="color: rgba(255, 255, 255, 0.282)"], +.notion-body.dark [style^="color: rgba(255, 255, 255, 0.443)"], +.notion-body.dark [style^="color: rgba(255, 255, 255, 0.445)"], +.notion-body.dark [style^="color:rgb(127, 127, 127)"], +.notion-body.dark [style^="color:rgb(155, 155, 155)"], +.notion-body.dark [style^="color:rgba(255, 255, 255, 0.13)"], +.notion-body.dark [style^="color:rgba(255, 255, 255, 0.282)"], +.notion-body.dark [style^="color:rgba(255, 255, 255, 0.443)"], +.notion-body.dark [style^="color:rgba(255, 255, 255, 0.445)"] { + color: var(--theme--fg-secondary, #9b9b9b) !important; + text-decoration-color: currentColor !important; +} +.notion-body.dark + [style*="rgb(37, 37, 37)"]:is( + [style*="border:"], + [style*="border-top:"], + [style*="border-left:"], + [style*="border-bottom:"], + [style*="border-right:"] + ), +[style*="1px solid rgb(47, 47, 47)"]:is( + [style*="border:"], + [style*="border-top:"], + [style*="border-left:"], + [style*="border-bottom:"], + [style*="border-right:"] + ), +[style*="1px solid rgba(255, 255, 255, 0.094)"]:is( + [style*="border:"], + [style*="border-top:"], + [style*="border-left:"], + [style*="border-bottom:"], + [style*="border-right:"] + ), +[style*="1px solid rgba(255, 255, 255, 0.13)"]:is( + [style*="border:"], + [style*="border-top:"], + [style*="border-left:"], + [style*="border-bottom:"], + [style*="border-right:"] + ), +[style*="2px solid rgba(255, 255, 255, 0.81)"]:is( + [style*="border:"], + [style*="border-top:"], + [style*="border-left:"], + [style*="border-bottom:"], + [style*="border-right:"] + ) { + border-color: var(--theme--fg-border, #2f2f2f) !important; +} +.notion-body.dark + [style*="; box-shadow: rgba(255, 255, 255, 0.094) 0px -1px 0px;"] { + box-shadow: var(--theme--fg-border, #2f2f2f) 0-1px 0 !important; +} +.notion-body.dark + [style*="; box-shadow: rgba(15, 15, 15, 0.2) 0px 0px 0px 1px inset;"] { + box-shadow: var(--theme--fg-border, #2f2f2f) 0 0 0 1px inset !important; +} +.notion-body.dark + [style*="; box-shadow: rgb(25, 25, 25) -3px 0px 0px, rgb(47, 47, 47) 0px 1px 0px;"] { + box-shadow: transparent -3px 0 0, transparent 0 1px 0 !important; +} +.notion-body.dark + [style*="; box-shadow: rgba(255, 255, 255, 0.05) -1px 0px 0px 0px inset;"] { + box-shadow: var(--theme--fg-border, #2f2f2f) -1px 0 0 0 inset !important; +} +.notion-body.dark [style*="; box-shadow: rgb(47, 47, 47) 0px -1px 0px inset;"] { + box-shadow: var(--theme--fg-border, #2f2f2f) 0-1px 0 inset !important; +} +.notion-body.dark + [style*="; box-shadow: rgba(255, 255, 255, 0.13) 1px 0px 0px inset;"] { + box-shadow: var(--theme--fg-border, #2f2f2f) 1px 0 0 inset !important; +} +.notion-body.dark [style*="; box-shadow: rgb(47, 47, 47) 0px 1px 0px;"] { + box-shadow: var(--theme--fg-border, #2f2f2f) 0 1px 0 !important; +} +.notion-body.dark [style*="box-shadow: rgb(47, 47, 47) -1px 0px 0px;"] { + box-shadow: var(--theme--fg-border, #2f2f2f) -1px 0 0 !important; +} +.notion-body.dark [style*="height: 1px;"][style*="background"] { + background: var(--theme--fg-border, #2f2f2f) !important; +} +.notion-body.dark + .notion-code-block + span.token[style*="rgba(155, 155, 155, 1)"], +.notion-body.dark .notion-enable-hover[style*="rgba(155, 155, 155, 1)"], +.notion-body.dark + .notion-text-block + > [style*="color:"][style*="fill:"][style*="rgb(155, 155, 155)"] { + color: var(--theme--fg-gray, #9b9b9b) !important; +} +.notion-body.dark + .notion-code-block + span.token[style*="rgba(186, 133, 111, 1)"], +.notion-body.dark .notion-enable-hover[style*="rgba(186, 133, 111, 1)"], +.notion-body.dark + .notion-text-block + > [style*="color:"][style*="fill:"][style*="rgb(186, 133, 111)"] { + color: var(--theme--fg-brown, #ba856f) !important; +} +.notion-body.dark .notion-code-block span.token[style*="rgba(199, 125, 72, 1)"], +.notion-body.dark .notion-enable-hover[style*="rgba(199, 125, 72, 1)"], +.notion-body.dark + .notion-text-block + > [style*="color:"][style*="fill:"][style*="rgb(199, 125, 72)"] { + color: var(--theme--fg-orange, #c77d48) !important; +} +.notion-body.dark .notion-code-block span.token[style*="rgba(202, 152, 73, 1)"], +.notion-body.dark .notion-enable-hover[style*="rgba(202, 152, 73, 1)"], +.notion-body.dark + .notion-text-block + > [style*="color:"][style*="fill:"][style*="rgb(202, 152, 73)"] { + color: var(--theme--fg-yellow, #ca9849) !important; +} +.notion-body.dark .notion-code-block span.token[style*="rgba(82, 158, 114, 1)"], +.notion-body.dark .notion-enable-hover[style*="rgba(82, 158, 114, 1)"], +.notion-body.dark + .notion-text-block + > [style*="color:"][style*="fill:"][style*="rgb(82, 158, 114)"] { + color: var(--theme--fg-green, #529e72) !important; +} +.notion-body.dark .notion-code-block span.token[style*="rgba(94, 135, 201, 1)"], +.notion-body.dark .notion-enable-hover[style*="rgba(94, 135, 201, 1)"], +.notion-body.dark + .notion-text-block + > [style*="color:"][style*="fill:"][style*="rgb(94, 135, 201)"] { + color: var(--theme--fg-blue, #5e87c9) !important; +} +.notion-body.dark + .notion-code-block + span.token[style*="rgba(157, 104, 211, 1)"], +.notion-body.dark .notion-enable-hover[style*="rgba(157, 104, 211, 1)"], +.notion-body.dark + .notion-text-block + > [style*="color:"][style*="fill:"][style*="rgb(157, 104, 211)"] { + color: var(--theme--fg-purple, #9d68d3) !important; +} +.notion-body.dark .notion-code-block span.token[style*="rgba(209, 87, 150, 1)"], +.notion-body.dark .notion-enable-hover[style*="rgba(209, 87, 150, 1)"], +.notion-body.dark + .notion-text-block + > [style*="color:"][style*="fill:"][style*="rgb(209, 87, 150)"] { + color: var(--theme--fg-pink, #d15796) !important; +} +.notion-body.dark .notion-code-block span.token[style*="rgba(223, 84, 82, 1)"], +.notion-body.dark .notion-enable-hover[style*="rgba(223, 84, 82, 1)"], +.notion-body.dark + .notion-text-block + > [style*="color:"][style*="fill:"][style*="rgb(223, 84, 82)"] { + color: var(--theme--fg-red, #df5452) !important; +} +.notion-body.dark + .notion-board-view + :is( + .notion-board-group[style*="rgb(28, 28, 28)"] [style*="height: 32px"], + [style*="rgb(28, 28, 28)"] > [style*="color"]:nth-child(2), + [style*="rgb(28, 28, 28)"] > div > svg + ) { + color: var(--theme--fg-secondary, #7f7f7f) !important; +} +.notion-body.dark + .notion-board-view + :is( + .notion-board-group[style*="rgb(32, 32, 32)"] [style*="height: 32px"], + [style*="rgb(32, 32, 32)"] > [style*="color"]:nth-child(2), + [style*="rgb(32, 32, 32)"] > div > svg + ) { + color: var(--theme--fg-gray, #7f7f7f) !important; +} +.notion-body.dark + .notion-board-view + :is( + .notion-board-group[style*="rgb(35, 30, 28)"] [style*="height: 32px"], + [style*="rgb(35, 30, 28)"] > [style*="color"]:nth-child(2), + [style*="rgb(35, 30, 28)"] > div > svg + ) { + color: var(--theme--fg-brown, #845641) !important; +} +.notion-body.dark + .notion-board-view + :is( + .notion-board-group[style*="rgb(37, 31, 27)"] [style*="height: 32px"], + [style*="rgb(37, 31, 27)"] > [style*="color"]:nth-child(2), + [style*="rgb(37, 31, 27)"] > div > svg + ) { + color: var(--theme--fg-orange, #a75b1a) !important; +} +.notion-body.dark + .notion-board-view + :is( + .notion-board-group[style*="rgb(35, 31, 26)"] [style*="height: 32px"], + [style*="rgb(35, 31, 26)"] > [style*="color"]:nth-child(2), + [style*="rgb(35, 31, 26)"] > div > svg + ) { + color: var(--theme--fg-yellow, #9b6e23) !important; +} +.notion-body.dark + .notion-board-view + :is( + .notion-board-group[style*="rgb(29, 34, 32)"] [style*="height: 32px"], + [style*="rgb(29, 34, 32)"] > [style*="color"]:nth-child(2), + [style*="rgb(29, 34, 32)"] > div > svg + ) { + color: var(--theme--fg-green, #2d7650) !important; +} +.notion-body.dark + .notion-board-view + :is( + .notion-board-group[style*="rgb(27, 31, 34)"] [style*="height: 32px"], + [style*="rgb(27, 31, 34)"] > [style*="color"]:nth-child(2), + [style*="rgb(27, 31, 34)"] > div > svg + ) { + color: var(--theme--fg-blue, #295a95) !important; +} +.notion-body.dark + .notion-board-view + :is( + .notion-board-group[style*="rgb(31, 29, 33)"] [style*="height: 32px"], + [style*="rgb(31, 29, 33)"] > [style*="color"]:nth-child(2), + [style*="rgb(31, 29, 33)"] > div > svg + ) { + color: var(--theme--fg-purple, #704a96) !important; +} +.notion-body.dark + .notion-board-view + :is( + .notion-board-group[style*="rgb(35, 28, 31)"] [style*="height: 32px"], + [style*="rgb(35, 28, 31)"] > [style*="color"]:nth-child(2), + [style*="rgb(35, 28, 31)"] > div > svg + ) { + color: var(--theme--fg-pink, #903a65) !important; +} +.notion-body.dark + .notion-board-view + :is( + .notion-board-group[style*="rgb(36, 30, 29)"] [style*="height: 32px"], + [style*="rgb(36, 30, 29)"] > [style*="color"]:nth-child(2), + [style*="rgb(36, 30, 29)"] > div > svg + ) { + color: var(--theme--fg-red, #8f3a35) !important; +} +.notion-body.dark [style*="background-color: rgb(25, 25, 25)"], +.notion-body.dark [style*="background-color: rgb(37, 37, 37)"], +.notion-body.dark [style*="background-color: rgba(255, 255, 255, 0.13)"], +.notion-body.dark [style*="background-color:rgb(25, 25, 25)"], +.notion-body.dark [style*="background-color:rgb(37, 37, 37)"], +.notion-body.dark [style*="background-color:rgba(255, 255, 255, 0.13)"], +.notion-body.dark [style*="background: rgb(25, 25, 25)"], +.notion-body.dark [style*="background: rgb(37, 37, 37)"], +.notion-body.dark [style*="background: rgba(255, 255, 255, 0.13)"], +.notion-body.dark [style*="background:rgb(25, 25, 25)"], +.notion-body.dark [style*="background:rgb(37, 37, 37)"], +.notion-body.dark [style*="background:rgba(255, 255, 255, 0.13)"] { + background: var(--theme--bg-primary, #191919) !important; +} +.notion-body.dark + .notion-focusable-within + [style*="background"]:not([style*="background: none"]), +.notion-body.dark [style*="background-color: rgb(32, 32, 32)"], +.notion-body.dark [style*="background-color: rgb(47, 47, 47)"], +.notion-body.dark [style*="background-color: rgba(255, 255, 255, 0.0"], +.notion-body.dark [style*="background-color:rgb(32, 32, 32)"], +.notion-body.dark [style*="background-color:rgb(47, 47, 47)"], +.notion-body.dark [style*="background-color:rgba(255, 255, 255, 0.0"], +.notion-body.dark [style*="background: rgb(32, 32, 32)"], +.notion-body.dark [style*="background: rgb(47, 47, 47)"], +.notion-body.dark [style*="background: rgba(255, 255, 255, 0.0"], +.notion-body.dark [style*="background:rgb(32, 32, 32)"], +.notion-body.dark [style*="background:rgb(47, 47, 47)"], +.notion-body.dark [style*="background:rgba(255, 255, 255, 0.0"] { + background: var(--theme--bg-secondary, #202020) !important; +} +[style*="linear-gradient(to left, rgb(25, 25, 25) 20%, rgba(25, 25, 25, 0) 100%)"] { + background-image: linear-gradient( + to left, + var(--theme--bg-primary, #191919) 20%, + transparent 100% + ) !important; +} +[style*="linear-gradient(to right, rgb(25, 25, 25) 20%, rgba(25, 25, 25, 0) 100%)"] { + background-image: linear-gradient( + to right, + var(--theme--bg-primary, #191919) 20%, + transparent 100% + ) !important; +} +.notion-body.dark + :is( + [style*="background: rgb(47, 47, 47)"], + [style*="background-color: rgb(47, 47, 47)"] + )[style*="transition: background"]:hover, +.notion-body.dark + :is( + [style*="background: rgba(255, 255, 255, 0.055)"], + [style*="background-color: rgba(255, 255, 255, 0.055)"] + ), +.notion-body.dark + [style*="height: 14px; width: 26px; border-radius: 44px;"][style*="rgba"] { + background: var(--theme--bg-hover, rgba(255, 255, 255, 0.055)) !important; +} +.notion-body.dark + .notion-board-view + .notion-board-group[style*="rgb(32, 32, 32)"] + a[style*="background"], +.notion-body.dark + .notion-selectable + .notion-enable-hover[style*="background:"][style*="rgba(47, 47, 47, 1)"], +.notion-body.dark + .notion-text-block + > [style*="background:"][style*="rgb(47, 47, 47)"] { + background: var(--theme--bg-gray, #2f2f2f) !important; +} +.notion-body.dark + .notion-selectable + .notion-enable-hover[style*="background:"][style*="rgba(74, 50, 40, 1)"], +.notion-body.dark + .notion-text-block + > [style*="background:"][style*="rgb(74, 50, 40)"] { + background: var(--theme--bg-brown, #4a3228) !important; +} +.notion-body.dark + .notion-selectable + .notion-enable-hover[style*="background:"][style*="rgba(92, 59, 35, 1)"], +.notion-body.dark + .notion-text-block + > [style*="background:"][style*="rgb(92, 59, 35)"] { + background: var(--theme--bg-orange, #5c3b23) !important; +} +.notion-body.dark + .notion-selectable + .notion-enable-hover[style*="background:"][style*="rgba(86, 67, 40, 1)"], +.notion-body.dark + .notion-text-block + > [style*="background:"][style*="rgb(86, 67, 40)"] { + background: var(--theme--bg-yellow, #564328) !important; +} +.notion-body.dark + .notion-selectable + .notion-enable-hover[style*="background:"][style*="rgba(36, 61, 48, 1)"], +.notion-body.dark + .notion-text-block + > [style*="background:"][style*="rgb(36, 61, 48)"] { + background: var(--theme--bg-green, #243d30) !important; +} +.notion-body.dark + .notion-selectable + .notion-enable-hover[style*="background:"][style*="rgba(20, 58, 78, 1)"], +.notion-body.dark + .notion-text-block + > [style*="background:"][style*="rgb(20, 58, 78)"] { + background: var(--theme--bg-blue, #143a4e) !important; +} +.notion-body.dark + .notion-selectable + .notion-enable-hover[style*="background:"][style*="rgba(60, 45, 73, 1)"], +.notion-body.dark + .notion-text-block + > [style*="background:"][style*="rgb(60, 45, 73)"] { + background: var(--theme--bg-purple, #3c2d49) !important; +} +.notion-body.dark + .notion-selectable + .notion-enable-hover[style*="background:"][style*="rgba(78, 44, 60, 1)"], +.notion-body.dark + .notion-text-block + > [style*="background:"][style*="rgb(78, 44, 60)"] { + background: var(--theme--bg-pink, #4e2c3c) !important; +} +.notion-body.dark + .notion-selectable + .notion-enable-hover[style*="background:"][style*="rgba(82, 46, 42, 1)"], +.notion-body.dark + .notion-text-block + > [style*="background:"][style*="rgb(82, 46, 42)"] { + background: var(--theme--bg-red, #522e2a) !important; +} +.notion-body.dark + .notion-collection_view-block + [style*="height: 14px; border-radius: 3px; padding-left: 6px;"][style*="rgb(55, 55, 55)"], +.notion-body.dark + .notion-timeline-item-properties + [style*="height: 18px; border-radius: 3px; padding-left: 8px;"][style*="rgb(55, 55, 55)"], +.notion-body.dark + [style*="height: 20px; border-radius: 3px; padding-left: 6px;"][style*="background:"][style*="rgb(55, 55, 55)"] { + background: var(--theme--bg-light_gray, #373737) !important; +} +.notion-body.dark + .notion-collection_view-block + [style*="height: 14px; border-radius: 3px; padding-left: 6px;"][style*="rgb(90, 90, 90)"], +.notion-body.dark + .notion-timeline-item-properties + [style*="height: 18px; border-radius: 3px; padding-left: 8px;"][style*="rgb(90, 90, 90)"], +.notion-body.dark + [style*="height: 20px; border-radius: 3px; padding-left: 6px;"][style*="background:"][style*="rgb(90, 90, 90)"] { + background: var(--theme--bg-gray, #5a5a5a) !important; +} +.notion-body.dark + .notion-collection_view-block + [style*="height: 14px; border-radius: 3px; padding-left: 6px;"][style*="rgb(96, 59, 44)"], +.notion-body.dark + .notion-timeline-item-properties + [style*="height: 18px; border-radius: 3px; padding-left: 8px;"][style*="rgb(96, 59, 44)"], +.notion-body.dark + [style*="height: 20px; border-radius: 3px; padding-left: 6px;"][style*="background:"][style*="rgb(96, 59, 44)"] { + background: var(--theme--bg-brown, #603b2c) !important; +} +.notion-body.dark + .notion-collection_view-block + [style*="height: 14px; border-radius: 3px; padding-left: 6px;"][style*="rgb(133, 76, 29)"], +.notion-body.dark + .notion-timeline-item-properties + [style*="height: 18px; border-radius: 3px; padding-left: 8px;"][style*="rgb(133, 76, 29)"], +.notion-body.dark + [style*="height: 20px; border-radius: 3px; padding-left: 6px;"][style*="background:"][style*="rgb(133, 76, 29)"] { + background: var(--theme--bg-orange, #854c1d) !important; +} +.notion-body.dark + .notion-collection_view-block + [style*="height: 14px; border-radius: 3px; padding-left: 6px;"][style*="rgb(137, 99, 42)"], +.notion-body.dark + .notion-timeline-item-properties + [style*="height: 18px; border-radius: 3px; padding-left: 8px;"][style*="rgb(137, 99, 42)"], +.notion-body.dark + [style*="height: 20px; border-radius: 3px; padding-left: 6px;"][style*="background:"][style*="rgb(137, 99, 42)"] { + background: var(--theme--bg-yellow, #89632a) !important; +} +.notion-body.dark + .notion-collection_view-block + [style*="height: 14px; border-radius: 3px; padding-left: 6px;"][style*="rgb(43, 89, 63)"], +.notion-body.dark + .notion-timeline-item-properties + [style*="height: 18px; border-radius: 3px; padding-left: 8px;"][style*="rgb(43, 89, 63)"], +.notion-body.dark + [style*="height: 20px; border-radius: 3px; padding-left: 6px;"][style*="background:"][style*="rgb(43, 89, 63)"] { + background: var(--theme--bg-green, #2b593f) !important; +} +.notion-body.dark + .notion-collection_view-block + [style*="height: 14px; border-radius: 3px; padding-left: 6px;"][style*="rgb(40, 69, 108)"], +.notion-body.dark + .notion-timeline-item-properties + [style*="height: 18px; border-radius: 3px; padding-left: 8px;"][style*="rgb(40, 69, 108)"], +.notion-body.dark + [style*="height: 20px; border-radius: 3px; padding-left: 6px;"][style*="background:"][style*="rgb(40, 69, 108)"] { + background: var(--theme--bg-blue, #28456c) !important; +} +.notion-body.dark + .notion-collection_view-block + [style*="height: 14px; border-radius: 3px; padding-left: 6px;"][style*="rgb(73, 47, 100)"], +.notion-body.dark + .notion-timeline-item-properties + [style*="height: 18px; border-radius: 3px; padding-left: 8px;"][style*="rgb(73, 47, 100)"], +.notion-body.dark + [style*="height: 20px; border-radius: 3px; padding-left: 6px;"][style*="background:"][style*="rgb(73, 47, 100)"] { + background: var(--theme--bg-purple, #492f64) !important; +} +.notion-body.dark + .notion-collection_view-block + [style*="height: 14px; border-radius: 3px; padding-left: 6px;"][style*="rgb(105, 49, 76)"], +.notion-body.dark + .notion-timeline-item-properties + [style*="height: 18px; border-radius: 3px; padding-left: 8px;"][style*="rgb(105, 49, 76)"], +.notion-body.dark + [style*="height: 20px; border-radius: 3px; padding-left: 6px;"][style*="background:"][style*="rgb(105, 49, 76)"] { + background: var(--theme--bg-pink, #69314c) !important; +} +.notion-body.dark + .notion-collection_view-block + [style*="height: 14px; border-radius: 3px; padding-left: 6px;"][style*="rgb(110, 54, 48)"], +.notion-body.dark + .notion-timeline-item-properties + [style*="height: 18px; border-radius: 3px; padding-left: 8px;"][style*="rgb(110, 54, 48)"], +.notion-body.dark + [style*="height: 20px; border-radius: 3px; padding-left: 6px;"][style*="background:"][style*="rgb(110, 54, 48)"] { + background: var(--theme--bg-red, #6e3630) !important; +} +.notion-body.dark + .notion-board-view + .notion-board-group[style*="rgb(28, 28, 28)"] + a[style*="background"] { + background: var(--theme--bg-light_gray, #2f2f2f) !important; +} +.notion-body.dark + .notion-board-view + [style*="rgb(28, 28, 28)"]:is( + .notion-board-group, + [style*="border-top-left-radius: 5px;"] + ) { + background: var(--theme--bg_dim-light_gray, #1c1c1c) !important; +} +.notion-body.dark + .notion-board-view + [style*="rgb(32, 32, 32)"]:is( + .notion-board-group, + [style*="border-top-left-radius: 5px;"] + ) { + background: var(--theme--bg_dim-gray, #202020) !important; +} +.notion-body.dark + .notion-board-view + .notion-board-group[style*="rgb(35, 30, 28)"] + a[style*="background"] { + background: var(--theme--bg-brown, #362822) !important; +} +.notion-body.dark + .notion-board-view + [style*="rgb(35, 30, 28)"]:is( + .notion-board-group, + [style*="border-top-left-radius: 5px;"] + ) { + background: var(--theme--bg_dim-brown, #231e1c) !important; +} +.notion-body.dark + .notion-board-view + .notion-board-group[style*="rgb(37, 31, 27)"] + a[style*="background"] { + background: var(--theme--bg-orange, #422f22) !important; +} +.notion-body.dark + .notion-board-view + [style*="rgb(37, 31, 27)"]:is( + .notion-board-group, + [style*="border-top-left-radius: 5px;"] + ) { + background: var(--theme--bg_dim-orange, #251f1b) !important; +} +.notion-body.dark + .notion-board-view + .notion-board-group[style*="rgb(35, 31, 26)"] + a[style*="background"] { + background: var(--theme--bg-yellow, #403324) !important; +} +.notion-body.dark + .notion-board-view + [style*="rgb(35, 31, 26)"]:is( + .notion-board-group, + [style*="border-top-left-radius: 5px;"] + ) { + background: var(--theme--bg_dim-yellow, #231f1a) !important; +} +.notion-body.dark + .notion-board-view + .notion-board-group[style*="rgb(29, 34, 32)"] + a[style*="background"] { + background: var(--theme--bg-green, #23312a) !important; +} +.notion-body.dark + .notion-board-view + [style*="rgb(29, 34, 32)"]:is( + .notion-board-group, + [style*="border-top-left-radius: 5px;"] + ) { + background: var(--theme--bg_dim-green, #1d2220) !important; +} +.notion-body.dark + .notion-board-view + .notion-board-group[style*="rgb(27, 31, 34)"] + a[style*="background"] { + background: var(--theme--bg-blue, #1b2d38) !important; +} +.notion-body.dark + .notion-board-view + [style*="rgb(27, 31, 34)"]:is( + .notion-board-group, + [style*="border-top-left-radius: 5px;"] + ) { + background: var(--theme--bg_dim-blue, #1b1f22) !important; +} +.notion-body.dark + .notion-board-view + .notion-board-group[style*="rgb(31, 29, 33)"] + a[style*="background"] { + background: var(--theme--bg-purple, #302739) !important; +} +.notion-body.dark + .notion-board-view + [style*="rgb(31, 29, 33)"]:is( + .notion-board-group, + [style*="border-top-left-radius: 5px;"] + ) { + background: var(--theme--bg_dim-purple, #1f1d21) !important; +} +.notion-body.dark + .notion-board-view + .notion-board-group[style*="rgb(35, 28, 31)"] + a[style*="background"] { + background: var(--theme--bg-pink, #3b2730) !important; +} +.notion-body.dark + .notion-board-view + [style*="rgb(35, 28, 31)"]:is( + .notion-board-group, + [style*="border-top-left-radius: 5px;"] + ) { + background: var(--theme--bg_dim-pink, #231c1f) !important; +} +.notion-body.dark + .notion-board-view + .notion-board-group[style*="rgb(36, 30, 29)"] + a[style*="background"] { + background: var(--theme--bg-red, #3e2825) !important; +} +.notion-body.dark + .notion-board-view + [style*="rgb(36, 30, 29)"]:is( + .notion-board-group, + [style*="border-top-left-radius: 5px;"] + ) { + background: var(--theme--bg_dim-red, #241e1d) !important; +} +.notion-body.dark [style*="background: rgba(255, 212, 0, 0.14)"] { + background: var(--theme--bg-yellow, rgba(255, 212, 0, 0.14)) !important; +} +.notion-body.dark + .notion-callout-block + > div + > [style*="background:"][style*="rgb(37, 37, 37)"] { + background: var(--theme--bg_dim-gray, #252525) !important; +} +.notion-body.dark + .notion-callout-block + > div + > [style*="background:"][style*="rgb(47, 39, 35)"] { + background: var(--theme--bg_dim-brown, #2f2723) !important; +} +.notion-body.dark + .notion-callout-block + > div + > [style*="background:"][style*="rgb(56, 40, 30)"] { + background: var(--theme--bg_dim-orange, #38281e) !important; +} +.notion-body.dark + .notion-callout-block + > div + > [style*="background:"][style*="rgb(57, 46, 30)"] { + background: var(--theme--bg_dim-yellow, #392e1e) !important; +} +.notion-body.dark + .notion-callout-block + > div + > [style*="background:"][style*="rgb(34, 43, 38)"] { + background: var(--theme--bg_dim-green, #222b26) !important; +} +.notion-body.dark + .notion-callout-block + > div + > [style*="background:"][style*="rgb(29, 40, 46)"] { + background: var(--theme--bg_dim-blue, #1d282e) !important; +} +.notion-body.dark + .notion-callout-block + > div + > [style*="background:"][style*="rgb(43, 36, 49)"] { + background: var(--theme--bg_dim-purple, #2b2431) !important; +} +.notion-body.dark + .notion-callout-block + > div + > [style*="background:"][style*="rgb(48, 34, 40)"] { + background: var(--theme--bg_dim-pink, #302228) !important; +} +.notion-body.dark + .notion-callout-block + > div + > [style*="background:"][style*="rgb(54, 36, 34)"] { + background: var(--theme--bg_dim-red, #362422) !important; +} +[style*="height: 18px; border-radius: 3px; background"][style*="rgba(255, 255, 255, 0.094)"] { + background: var( + --theme--bg-light_gray, + rgba(255, 255, 255, 0.094) + ) !important; +} +.notion-body.dark ::-webkit-scrollbar-track, +.notion-body.dark ::-webkit-scrollbar-corner { + background: var( + --theme--scrollbar-track, + rgba(202, 204, 206, 0.04) + ) !important; +} +.notion-body.dark ::-webkit-scrollbar-thumb { + background: var(--theme--scrollbar-thumb, #474c50) !important; +} +.notion-body.dark ::-webkit-scrollbar-thumb:hover { + background: var( + --theme--scrollbar-thumb_hover, + rgba(202, 204, 206, 0.3) + ) !important; +} +.notion-body.dark + .notion-overlay-container + [data-overlay] + > div + > [style*="position: absolute"]:first-child { + background: var(--theme--bg-overlay, rgba(15, 15, 15, 0.8)) !important; +} +.notion-body.dark + .notion-text-block + .notion-enable-hover[style*="mono"][style*="color:#EB5757"] { + color: var(--theme--code-inline_fg, #eb5757) !important; +} +.notion-body.dark + .notion-text-block + .notion-enable-hover[style*="mono"][style*="background:rgba(135,131,120,0.15)"] { + background: var( + --theme--code-inline_bg, + rgba(135, 131, 120, 0.15) + ) !important; +} +.notion-body.dark .notion-code-block > [style*="mono"] { + color: var(--theme--code-block_fg, rgba(255, 255, 255, 0.81)) !important; +} +.notion-body.dark .notion-code-block > div > [style*="background"] { + background: var(--theme--code-block_bg, rgba(255, 255, 255, 0.03)) !important; +} +.notion-body.dark .notion-code-block .token.keyword { + color: var(--theme--code-keyword, #d1949e) !important; +} +.notion-body.dark .notion-code-block .token.builtin { + color: var(--theme--code-builtin, #bde052) !important; +} +.notion-body.dark .notion-code-block .token.class-name { + color: var(--theme--code-class_name, rgba(255, 255, 255, 0.81)) !important; +} +.notion-body.dark .notion-code-block .token.function { + color: var(--theme--code-function, rgba(255, 255, 255, 0.81)) !important; +} +.notion-body.dark .notion-code-block .token.boolean { + color: var(--theme--code-boolean, #d1949e) !important; +} +.notion-body.dark .notion-code-block .token.number { + color: var(--theme--code-number, #d1949e) !important; +} +.notion-body.dark .notion-code-block .token.string { + color: var(--theme--code-string, #bde052) !important; +} +.notion-body.dark .notion-code-block .token.char { + color: var(--theme--code-char, #bde052) !important; +} +.notion-body.dark .notion-code-block .token.symbol { + color: var(--theme--code-symbol, #d1949e) !important; +} +.notion-body.dark .notion-code-block .token.regex { + color: var(--theme--code-regex, #e90) !important; +} +.notion-body.dark .notion-code-block .token.url { + color: var(--theme--code-url, #f5b83d) !important; +} +.notion-body.dark .notion-code-block .token.operator { + color: var(--theme--code-operator, #f5b83d) !important; +} +.notion-body.dark .notion-code-block .token.variable { + color: var(--theme--code-variable, #f5b83d) !important; +} +.notion-body.dark .notion-code-block .token.constant { + color: var(--theme--code-constant, #d1949e) !important; +} +.notion-body.dark .notion-code-block .token.property { + color: var(--theme--code-property, #d1949e) !important; +} +.notion-body.dark .notion-code-block .token.punctuation { + color: var(--theme--code-punctuation, rgba(255, 255, 255, 0.81)) !important; +} +.notion-body.dark .notion-code-block .token.important { + color: var(--theme--code-important, #e90) !important; +} +.notion-body.dark .notion-code-block .token.comment { + color: var(--theme--code-comment, #998066) !important; +} +.notion-body.dark .notion-code-block .token.tag { + color: var(--theme--code-tag, #d1949e) !important; +} +.notion-body.dark .notion-code-block .token.attr-name { + color: var(--theme--code-attr_name, #bde052) !important; +} +.notion-body.dark .notion-code-block .token.attr-value { + color: var(--theme--code-attr_value, #d1949e) !important; +} +.notion-body.dark .notion-code-block .token.namespace { + color: var(--theme--code-namespace, rgba(255, 255, 255, 0.81)) !important; +} +.notion-body.dark .notion-code-block .token.prolog { + color: var(--theme--code-prolog, #998066) !important; +} +.notion-body.dark .notion-code-block .token.doctype { + color: var(--theme--code-doctype, #998066) !important; +} +.notion-body.dark .notion-code-block .token.cdata { + color: var(--theme--code-cdata, #998066) !important; +} +.notion-body.dark .notion-code-block .token.entity { + color: var(--theme--code-entity, #f5b83d) !important; +} +.notion-body.dark .notion-code-block .token.atrule { + color: var(--theme--code-atrule, #d1949e) !important; +} +.notion-body.dark .notion-code-block .token.selector { + color: var(--theme--code-selector, #bde052) !important; +} +.notion-body.dark .notion-code-block .token.inserted { + color: var(--theme--code-inserted, #bde052) !important; +} +.notion-body.dark .notion-code-block .token.deleted { + color: var(--theme--code-deleted, red) !important; +} +[style*="Segoe UI"] { + font-family: var(--theme--font-sans, ui-sans-serif), ui-sans-serif, + -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, + "Apple Color Emoji", Arial, sans-serif, "Segoe UI Emoji", "Segoe UI Symbol" !important; +} +[style*="Georgia"] { + font-family: var(--theme--font-serif, Lyon-Text), Lyon-Text, Georgia, YuMincho, + "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Songti TC", + "Songti SC", SimSun, "Nanum Myeongjo", NanumMyeongjo, Batang, serif !important; +} +[style*="iawriter-mono"] { + font-family: var(--theme--font-mono, iawriter-mono), iawriter-mono, Nitti, + Menlo, Courier, monospace !important; +} +[style*="SFMono-Regular"] { + font-family: var(--theme--font-code, SFMono-Regular), SFMono-Regular, Consolas, + "Liberation Mono", Menlo, Courier, monospace !important; +} +.notion-body:not(.dark) [style*=" color: rgb(24, 51, 71)"], +.notion-body:not(.dark) [style*=" color: rgb(28, 56, 41)"], +.notion-body:not(.dark) [style*=" color: rgb(50, 48, 44)"], +.notion-body:not(.dark) [style*=" color: rgb(55, 53, 47)"], +.notion-body:not(.dark) [style*=" color: rgb(64, 44, 27)"], +.notion-body:not(.dark) [style*=" color: rgb(65, 36, 84)"], +.notion-body:not(.dark) [style*=" color: rgb(68, 42, 30)"], +.notion-body:not(.dark) [style*=" color: rgb(73, 41, 14)"], +.notion-body:not(.dark) [style*=" color: rgb(76, 35, 55)"], +.notion-body:not(.dark) [style*=" color: rgb(93, 23, 21)"], +.notion-body:not(.dark) [style*=" color: rgba(255, 255, 255, 0.9)"], +.notion-body:not(.dark) [style*=" color: rgba(55, 53, 47, 0.85)"], +.notion-body:not(.dark) [style*=" color:rgb(24, 51, 71)"], +.notion-body:not(.dark) [style*=" color:rgb(28, 56, 41)"], +.notion-body:not(.dark) [style*=" color:rgb(50, 48, 44)"], +.notion-body:not(.dark) [style*=" color:rgb(55, 53, 47)"], +.notion-body:not(.dark) [style*=" color:rgb(64, 44, 27)"], +.notion-body:not(.dark) [style*=" color:rgb(65, 36, 84)"], +.notion-body:not(.dark) [style*=" color:rgb(68, 42, 30)"], +.notion-body:not(.dark) [style*=" color:rgb(73, 41, 14)"], +.notion-body:not(.dark) [style*=" color:rgb(76, 35, 55)"], +.notion-body:not(.dark) [style*=" color:rgb(93, 23, 21)"], +.notion-body:not(.dark) [style*=" color:rgba(255, 255, 255, 0.9)"], +.notion-body:not(.dark) [style*=" color:rgba(55, 53, 47, 0.85)"], +.notion-body:not(.dark) [style*=";color: rgb(24, 51, 71)"], +.notion-body:not(.dark) [style*=";color: rgb(28, 56, 41)"], +.notion-body:not(.dark) [style*=";color: rgb(50, 48, 44)"], +.notion-body:not(.dark) [style*=";color: rgb(55, 53, 47)"], +.notion-body:not(.dark) [style*=";color: rgb(64, 44, 27)"], +.notion-body:not(.dark) [style*=";color: rgb(65, 36, 84)"], +.notion-body:not(.dark) [style*=";color: rgb(68, 42, 30)"], +.notion-body:not(.dark) [style*=";color: rgb(73, 41, 14)"], +.notion-body:not(.dark) [style*=";color: rgb(76, 35, 55)"], +.notion-body:not(.dark) [style*=";color: rgb(93, 23, 21)"], +.notion-body:not(.dark) [style*=";color: rgba(255, 255, 255, 0.9)"], +.notion-body:not(.dark) [style*=";color: rgba(55, 53, 47, 0.85)"], +.notion-body:not(.dark) [style*=";color:rgb(24, 51, 71)"], +.notion-body:not(.dark) [style*=";color:rgb(28, 56, 41)"], +.notion-body:not(.dark) [style*=";color:rgb(50, 48, 44)"], +.notion-body:not(.dark) [style*=";color:rgb(55, 53, 47)"], +.notion-body:not(.dark) [style*=";color:rgb(64, 44, 27)"], +.notion-body:not(.dark) [style*=";color:rgb(65, 36, 84)"], +.notion-body:not(.dark) [style*=";color:rgb(68, 42, 30)"], +.notion-body:not(.dark) [style*=";color:rgb(73, 41, 14)"], +.notion-body:not(.dark) [style*=";color:rgb(76, 35, 55)"], +.notion-body:not(.dark) [style*=";color:rgb(93, 23, 21)"], +.notion-body:not(.dark) [style*=";color:rgba(255, 255, 255, 0.9)"], +.notion-body:not(.dark) [style*=";color:rgba(55, 53, 47, 0.85)"], +.notion-body:not(.dark) [style*="fill: rgb(24, 51, 71)"], +.notion-body:not(.dark) [style*="fill: rgb(28, 56, 41)"], +.notion-body:not(.dark) [style*="fill: rgb(50, 48, 44)"], +.notion-body:not(.dark) [style*="fill: rgb(55, 53, 47)"], +.notion-body:not(.dark) [style*="fill: rgb(64, 44, 27)"], +.notion-body:not(.dark) [style*="fill: rgb(65, 36, 84)"], +.notion-body:not(.dark) [style*="fill: rgb(68, 42, 30)"], +.notion-body:not(.dark) [style*="fill: rgb(73, 41, 14)"], +.notion-body:not(.dark) [style*="fill: rgb(76, 35, 55)"], +.notion-body:not(.dark) [style*="fill: rgb(93, 23, 21)"], +.notion-body:not(.dark) [style*="fill: rgba(255, 255, 255, 0.9)"], +.notion-body:not(.dark) [style*="fill: rgba(55, 53, 47, 0.85)"], +.notion-body:not(.dark) [style*="fill:rgb(24, 51, 71)"], +.notion-body:not(.dark) [style*="fill:rgb(28, 56, 41)"], +.notion-body:not(.dark) [style*="fill:rgb(50, 48, 44)"], +.notion-body:not(.dark) [style*="fill:rgb(55, 53, 47)"], +.notion-body:not(.dark) [style*="fill:rgb(64, 44, 27)"], +.notion-body:not(.dark) [style*="fill:rgb(65, 36, 84)"], +.notion-body:not(.dark) [style*="fill:rgb(68, 42, 30)"], +.notion-body:not(.dark) [style*="fill:rgb(73, 41, 14)"], +.notion-body:not(.dark) [style*="fill:rgb(76, 35, 55)"], +.notion-body:not(.dark) [style*="fill:rgb(93, 23, 21)"], +.notion-body:not(.dark) [style*="fill:rgba(255, 255, 255, 0.9)"], +.notion-body:not(.dark) [style*="fill:rgba(55, 53, 47, 0.85)"], +.notion-body:not(.dark) [style^="color: rgb(24, 51, 71)"], +.notion-body:not(.dark) [style^="color: rgb(28, 56, 41)"], +.notion-body:not(.dark) [style^="color: rgb(50, 48, 44)"], +.notion-body:not(.dark) [style^="color: rgb(55, 53, 47)"], +.notion-body:not(.dark) [style^="color: rgb(64, 44, 27)"], +.notion-body:not(.dark) [style^="color: rgb(65, 36, 84)"], +.notion-body:not(.dark) [style^="color: rgb(68, 42, 30)"], +.notion-body:not(.dark) [style^="color: rgb(73, 41, 14)"], +.notion-body:not(.dark) [style^="color: rgb(76, 35, 55)"], +.notion-body:not(.dark) [style^="color: rgb(93, 23, 21)"], +.notion-body:not(.dark) [style^="color: rgba(255, 255, 255, 0.9)"], +.notion-body:not(.dark) [style^="color: rgba(55, 53, 47, 0.85)"], +.notion-body:not(.dark) [style^="color:rgb(24, 51, 71)"], +.notion-body:not(.dark) [style^="color:rgb(28, 56, 41)"], +.notion-body:not(.dark) [style^="color:rgb(50, 48, 44)"], +.notion-body:not(.dark) [style^="color:rgb(55, 53, 47)"], +.notion-body:not(.dark) [style^="color:rgb(64, 44, 27)"], +.notion-body:not(.dark) [style^="color:rgb(65, 36, 84)"], +.notion-body:not(.dark) [style^="color:rgb(68, 42, 30)"], +.notion-body:not(.dark) [style^="color:rgb(73, 41, 14)"], +.notion-body:not(.dark) [style^="color:rgb(76, 35, 55)"], +.notion-body:not(.dark) [style^="color:rgb(93, 23, 21)"], +.notion-body:not(.dark) [style^="color:rgba(255, 255, 255, 0.9)"], +.notion-body:not(.dark) [style^="color:rgba(55, 53, 47, 0.85)"] { + color: var(--theme--fg-primary, #37352f) !important; + text-decoration-color: currentColor !important; +} +.notion-body:not(.dark) .rdp-day.rdp-day_outside, +.notion-body:not(.dark) .rdp-head_cell, +.notion-body:not(.dark) .rdp-nav_icon, +.notion-body:not(.dark) ::placeholder, +.notion-body:not(.dark) [style*=" color: rgba(206, 205, 202, 0.6)"], +.notion-body:not(.dark) [style*=" color: rgba(25, 23, 17, 0.6)"], +.notion-body:not(.dark) [style*=" color: rgba(55, 53, 47, 0.16)"], +.notion-body:not(.dark) [style*=" color: rgba(55, 53, 47, 0.35)"], +.notion-body:not(.dark) [style*=" color: rgba(55, 53, 47, 0.45)"], +.notion-body:not(.dark) [style*=" color: rgba(55, 53, 47, 0.5)"], +.notion-body:not(.dark) [style*=" color: rgba(55, 53, 47, 0.65)"], +.notion-body:not(.dark) [style*=" color:rgba(206, 205, 202, 0.6)"], +.notion-body:not(.dark) [style*=" color:rgba(25, 23, 17, 0.6)"], +.notion-body:not(.dark) [style*=" color:rgba(55, 53, 47, 0.16)"], +.notion-body:not(.dark) [style*=" color:rgba(55, 53, 47, 0.35)"], +.notion-body:not(.dark) [style*=" color:rgba(55, 53, 47, 0.45)"], +.notion-body:not(.dark) [style*=" color:rgba(55, 53, 47, 0.5)"], +.notion-body:not(.dark) [style*=" color:rgba(55, 53, 47, 0.65)"], +.notion-body:not(.dark) [style*=";color: rgba(206, 205, 202, 0.6)"], +.notion-body:not(.dark) [style*=";color: rgba(25, 23, 17, 0.6)"], +.notion-body:not(.dark) [style*=";color: rgba(55, 53, 47, 0.16)"], +.notion-body:not(.dark) [style*=";color: rgba(55, 53, 47, 0.35)"], +.notion-body:not(.dark) [style*=";color: rgba(55, 53, 47, 0.45)"], +.notion-body:not(.dark) [style*=";color: rgba(55, 53, 47, 0.5)"], +.notion-body:not(.dark) [style*=";color: rgba(55, 53, 47, 0.65)"], +.notion-body:not(.dark) [style*=";color:rgba(206, 205, 202, 0.6)"], +.notion-body:not(.dark) [style*=";color:rgba(25, 23, 17, 0.6)"], +.notion-body:not(.dark) [style*=";color:rgba(55, 53, 47, 0.16)"], +.notion-body:not(.dark) [style*=";color:rgba(55, 53, 47, 0.35)"], +.notion-body:not(.dark) [style*=";color:rgba(55, 53, 47, 0.45)"], +.notion-body:not(.dark) [style*=";color:rgba(55, 53, 47, 0.5)"], +.notion-body:not(.dark) [style*=";color:rgba(55, 53, 47, 0.65)"], +.notion-body:not(.dark) [style*="fill: rgba(206, 205, 202, 0.6)"], +.notion-body:not(.dark) [style*="fill: rgba(25, 23, 17, 0.6)"], +.notion-body:not(.dark) [style*="fill: rgba(55, 53, 47, 0.16)"], +.notion-body:not(.dark) [style*="fill: rgba(55, 53, 47, 0.35)"], +.notion-body:not(.dark) [style*="fill: rgba(55, 53, 47, 0.45)"], +.notion-body:not(.dark) [style*="fill: rgba(55, 53, 47, 0.5)"], +.notion-body:not(.dark) [style*="fill: rgba(55, 53, 47, 0.65)"], +.notion-body:not(.dark) [style*="fill:rgba(206, 205, 202, 0.6)"], +.notion-body:not(.dark) [style*="fill:rgba(25, 23, 17, 0.6)"], +.notion-body:not(.dark) [style*="fill:rgba(55, 53, 47, 0.16)"], +.notion-body:not(.dark) [style*="fill:rgba(55, 53, 47, 0.35)"], +.notion-body:not(.dark) [style*="fill:rgba(55, 53, 47, 0.45)"], +.notion-body:not(.dark) [style*="fill:rgba(55, 53, 47, 0.5)"], +.notion-body:not(.dark) [style*="fill:rgba(55, 53, 47, 0.65)"], +.notion-body:not(.dark) [style^="color: rgba(206, 205, 202, 0.6)"], +.notion-body:not(.dark) [style^="color: rgba(25, 23, 17, 0.6)"], +.notion-body:not(.dark) [style^="color: rgba(55, 53, 47, 0.16)"], +.notion-body:not(.dark) [style^="color: rgba(55, 53, 47, 0.35)"], +.notion-body:not(.dark) [style^="color: rgba(55, 53, 47, 0.45)"], +.notion-body:not(.dark) [style^="color: rgba(55, 53, 47, 0.5)"], +.notion-body:not(.dark) [style^="color: rgba(55, 53, 47, 0.65)"], +.notion-body:not(.dark) [style^="color:rgba(206, 205, 202, 0.6)"], +.notion-body:not(.dark) [style^="color:rgba(25, 23, 17, 0.6)"], +.notion-body:not(.dark) [style^="color:rgba(55, 53, 47, 0.16)"], +.notion-body:not(.dark) [style^="color:rgba(55, 53, 47, 0.35)"], +.notion-body:not(.dark) [style^="color:rgba(55, 53, 47, 0.45)"], +.notion-body:not(.dark) [style^="color:rgba(55, 53, 47, 0.5)"], +.notion-body:not(.dark) [style^="color:rgba(55, 53, 47, 0.65)"] { + color: var(--theme--fg-secondary, rgba(25, 23, 17, 0.6)) !important; + text-decoration-color: currentColor !important; +} +.notion-body:not(.dark) + [style*="rgb(238, 238, 237)"]:is( + [style*="border:"], + [style*="border-top:"], + [style*="border-left:"], + [style*="border-bottom:"], + [style*="border-right:"] + ), +[style*="1px solid rgb(233, 233, 231)"]:is( + [style*="border:"], + [style*="border-top:"], + [style*="border-left:"], + [style*="border-bottom:"], + [style*="border-right:"] + ), +[style*="1px solid rgba(55, 53, 47, 0.09)"]:is( + [style*="border:"], + [style*="border-top:"], + [style*="border-left:"], + [style*="border-bottom:"], + [style*="border-right:"] + ), +[style*="1px solid rgba(55, 53, 47, 0.16)"]:is( + [style*="border:"], + [style*="border-top:"], + [style*="border-left:"], + [style*="border-bottom:"], + [style*="border-right:"] + ), +[style*="2px solid rgb(55, 53, 47)"]:is( + [style*="border:"], + [style*="border-top:"], + [style*="border-left:"], + [style*="border-bottom:"], + [style*="border-right:"] + ) { + border-color: var(--theme--fg-border, #e9e9e7) !important; +} +.notion-body:not(.dark) + [style*="; box-shadow: rgba(55, 53, 47, 0.09) 0px -1px 0px;"] { + box-shadow: var(--theme--fg-border, #e9e9e7) 0-1px 0 !important; +} +.notion-body:not(.dark) + [style*="; box-shadow: rgba(15, 15, 15, 0.1) 0px 0px 0px 1px inset;"] { + box-shadow: var(--theme--fg-border, #e9e9e7) 0 0 0 1px inset !important; +} +.notion-body:not(.dark) + [style*="; box-shadow: white -3px 0px 0px, rgb(233, 233, 231) 0px 1px 0px;"] { + box-shadow: #fff -3px 0 0, transparent 0 1px 0 !important; +} +.notion-body:not(.dark) + [style*="; box-shadow: rgb(233, 233, 231) 0px -1px 0px inset;"] { + box-shadow: var(--theme--fg-border, #e9e9e7) 0-1px 0 inset !important; +} +.notion-body:not(.dark) + [style*="; box-shadow: rgba(55, 53, 47, 0.16) 1px 0px 0px inset;"] { + box-shadow: var(--theme--fg-border, #e9e9e7) 1px 0 0 inset !important; +} +.notion-body:not(.dark) + [style*="; box-shadow: rgb(233, 233, 231) 0px 1px 0px;"] { + box-shadow: var(--theme--fg-border, #e9e9e7) 0 1px 0 !important; +} +.notion-body:not(.dark) + [style*="box-shadow: rgb(233, 233, 231) -1px 0px 0px;"] { + box-shadow: var(--theme--fg-border, #e9e9e7) -1px 0 0 !important; +} +.notion-body:not(.dark) [style*="height: 1px;"][style*="background"] { + background: var(--theme--fg-border, #e9e9e7) !important; +} +.notion-body:not(.dark) + .notion-code-block + span.token[style*="rgba(120, 119, 116, 1)"], +.notion-body:not(.dark) .notion-enable-hover[style*="rgba(120, 119, 116, 1)"], +.notion-body:not(.dark) + .notion-text-block + > [style*="color:"][style*="fill:"][style*="rgb(120, 119, 116)"] { + color: var(--theme--fg-gray, #787774) !important; +} +.notion-body:not(.dark) + .notion-code-block + span.token[style*="rgba(159, 107, 83, 1)"], +.notion-body:not(.dark) .notion-enable-hover[style*="rgba(159, 107, 83, 1)"], +.notion-body:not(.dark) + .notion-text-block + > [style*="color:"][style*="fill:"][style*="rgb(159, 107, 83)"] { + color: var(--theme--fg-brown, #9f6b53) !important; +} +.notion-body:not(.dark) + .notion-code-block + span.token[style*="rgba(217, 115, 13, 1)"], +.notion-body:not(.dark) .notion-enable-hover[style*="rgba(217, 115, 13, 1)"], +.notion-body:not(.dark) + .notion-text-block + > [style*="color:"][style*="fill:"][style*="rgb(217, 115, 13)"] { + color: var(--theme--fg-orange, #d9730d) !important; +} +.notion-body:not(.dark) + .notion-code-block + span.token[style*="rgba(203, 145, 47, 1)"], +.notion-body:not(.dark) .notion-enable-hover[style*="rgba(203, 145, 47, 1)"], +.notion-body:not(.dark) + .notion-text-block + > [style*="color:"][style*="fill:"][style*="rgb(203, 145, 47)"] { + color: var(--theme--fg-yellow, #cb912f) !important; +} +.notion-body:not(.dark) + .notion-code-block + span.token[style*="rgba(68, 131, 97, 1)"], +.notion-body:not(.dark) .notion-enable-hover[style*="rgba(68, 131, 97, 1)"], +.notion-body:not(.dark) + .notion-text-block + > [style*="color:"][style*="fill:"][style*="rgb(68, 131, 97)"] { + color: var(--theme--fg-green, #448361) !important; +} +.notion-body:not(.dark) + .notion-code-block + span.token[style*="rgba(51, 126, 169, 1)"], +.notion-body:not(.dark) .notion-enable-hover[style*="rgba(51, 126, 169, 1)"], +.notion-body:not(.dark) + .notion-text-block + > [style*="color:"][style*="fill:"][style*="rgb(51, 126, 169)"] { + color: var(--theme--fg-blue, #337ea9) !important; +} +.notion-body:not(.dark) + .notion-code-block + span.token[style*="rgba(144, 101, 176, 1)"], +.notion-body:not(.dark) .notion-enable-hover[style*="rgba(144, 101, 176, 1)"], +.notion-body:not(.dark) + .notion-text-block + > [style*="color:"][style*="fill:"][style*="rgb(144, 101, 176)"] { + color: var(--theme--fg-purple, #9065b0) !important; +} +.notion-body:not(.dark) + .notion-code-block + span.token[style*="rgba(193, 76, 138, 1)"], +.notion-body:not(.dark) .notion-enable-hover[style*="rgba(193, 76, 138, 1)"], +.notion-body:not(.dark) + .notion-text-block + > [style*="color:"][style*="fill:"][style*="rgb(193, 76, 138)"] { + color: var(--theme--fg-pink, #c14c8a) !important; +} +.notion-body:not(.dark) + .notion-code-block + span.token[style*="rgba(212, 76, 71, 1)"], +.notion-body:not(.dark) .notion-enable-hover[style*="rgba(212, 76, 71, 1)"], +.notion-body:not(.dark) + .notion-text-block + > [style*="color:"][style*="fill:"][style*="rgb(212, 76, 71)"] { + color: var(--theme--fg-red, #d44c47) !important; +} +.notion-body:not(.dark) + .notion-board-view + :is( + .notion-board-group[style*="rgba(249, 249, 245, 0.5)"] + [style*="height: 32px"], + [style*="rgba(249, 249, 245, 0.5)"] > [style*="color"]:nth-child(2), + [style*="rgba(249, 249, 245, 0.5)"] > div > svg + ) { + color: var(--theme--fg-secondary, rgba(145, 145, 142, 0.5)) !important; +} +.notion-body:not(.dark) + .notion-board-view + :is( + .notion-board-group[style*="rgba(247, 247, 245, 0.7)"] + [style*="height: 32px"], + [style*="rgba(247, 247, 245, 0.7)"] > [style*="color"]:nth-child(2), + [style*="rgba(247, 247, 245, 0.7)"] > div > svg + ) { + color: var(--theme--fg-gray, #91918e) !important; +} +.notion-body:not(.dark) + .notion-board-view + :is( + .notion-board-group[style*="rgba(250, 246, 245, 0.7)"] + [style*="height: 32px"], + [style*="rgba(250, 246, 245, 0.7)"] > [style*="color"]:nth-child(2), + [style*="rgba(250, 246, 245, 0.7)"] > div > svg + ) { + color: var(--theme--fg-brown, #bb846c) !important; +} +.notion-body:not(.dark) + .notion-board-view + :is( + .notion-board-group[style*="rgba(252, 245, 242, 0.7)"] + [style*="height: 32px"], + [style*="rgba(252, 245, 242, 0.7)"] > [style*="color"]:nth-child(2), + [style*="rgba(252, 245, 242, 0.7)"] > div > svg + ) { + color: var(--theme--fg-orange, #d7813a) !important; +} +.notion-body:not(.dark) + .notion-board-view + :is( + .notion-board-group[style*="rgba(250, 247, 237, 0.7)"] + [style*="height: 32px"], + [style*="rgba(250, 247, 237, 0.7)"] > [style*="color"]:nth-child(2), + [style*="rgba(250, 247, 237, 0.7)"] > div > svg + ) { + color: var(--theme--fg-yellow, #cb9433) !important; +} +.notion-body:not(.dark) + .notion-board-view + :is( + .notion-board-group[style*="rgba(244, 248, 243, 0.7)"] + [style*="height: 32px"], + [style*="rgba(244, 248, 243, 0.7)"] > [style*="color"]:nth-child(2), + [style*="rgba(244, 248, 243, 0.7)"] > div > svg + ) { + color: var(--theme--fg-green, #6c9b7d) !important; +} +.notion-body:not(.dark) + .notion-board-view + :is( + .notion-board-group[style*="rgba(241, 248, 251, 0.7)"] + [style*="height: 32px"], + [style*="rgba(241, 248, 251, 0.7)"] > [style*="color"]:nth-child(2), + [style*="rgba(241, 248, 251, 0.7)"] > div > svg + ) { + color: var(--theme--fg-blue, #5b97bd) !important; +} +.notion-body:not(.dark) + .notion-board-view + :is( + .notion-board-group[style*="rgba(249, 246, 252, 0.7)"] + [style*="height: 32px"], + [style*="rgba(249, 246, 252, 0.7)"] > [style*="color"]:nth-child(2), + [style*="rgba(249, 246, 252, 0.7)"] > div > svg + ) { + color: var(--theme--fg-purple, #a782c3) !important; +} +.notion-body:not(.dark) + .notion-board-view + :is( + .notion-board-group[style*="rgba(251, 245, 251, 0.7)"] + [style*="height: 32px"], + [style*="rgba(251, 245, 251, 0.7)"] > [style*="color"]:nth-child(2), + [style*="rgba(251, 245, 251, 0.7)"] > div > svg + ) { + color: var(--theme--fg-pink, #cd749f) !important; +} +.notion-body:not(.dark) + .notion-board-view + :is( + .notion-board-group[style*="rgba(253, 245, 243, 0.7)"] + [style*="height: 32px"], + [style*="rgba(253, 245, 243, 0.7)"] > [style*="color"]:nth-child(2), + [style*="rgba(253, 245, 243, 0.7)"] > div > svg + ) { + color: var(--theme--fg-red, #e16f64) !important; +} +.notion-body:not(.dark) [style*="background-color: rgb(247, 247, 247)"], +.notion-body:not(.dark) [style*="background-color: rgb(255, 255, 255)"], +.notion-body:not(.dark) [style*="background-color: white"], +.notion-body:not(.dark) [style*="background-color:rgb(247, 247, 247)"], +.notion-body:not(.dark) [style*="background-color:rgb(255, 255, 255)"], +.notion-body:not(.dark) [style*="background-color:white"], +.notion-body:not(.dark) [style*="background: rgb(247, 247, 247)"], +.notion-body:not(.dark) [style*="background: rgb(255, 255, 255)"], +.notion-body:not(.dark) [style*="background: white"], +.notion-body:not(.dark) [style*="background:rgb(247, 247, 247)"], +.notion-body:not(.dark) [style*="background:rgb(255, 255, 255)"], +.notion-body:not(.dark) [style*="background:white"] { + background: var(--theme--bg-primary, #fff) !important; +} +.notion-body:not(.dark) + .notion-focusable-within + [style*="background"]:not([style*="background: none"]), +.notion-body:not(.dark) [style*="background-color: rgb(15, 15, 15)"], +.notion-body:not(.dark) [style*="background-color: rgb(251, 251, 250)"], +.notion-body:not(.dark) [style*="background-color: rgb(253, 253, 253)"], +.notion-body:not(.dark) [style*="background-color:rgb(15, 15, 15)"], +.notion-body:not(.dark) [style*="background-color:rgb(251, 251, 250)"], +.notion-body:not(.dark) [style*="background-color:rgb(253, 253, 253)"], +.notion-body:not(.dark) [style*="background: rgb(15, 15, 15)"], +.notion-body:not(.dark) [style*="background: rgb(251, 251, 250)"], +.notion-body:not(.dark) [style*="background: rgb(253, 253, 253)"], +.notion-body:not(.dark) [style*="background:rgb(15, 15, 15)"], +.notion-body:not(.dark) [style*="background:rgb(251, 251, 250)"], +.notion-body:not(.dark) [style*="background:rgb(253, 253, 253)"] { + background: var(--theme--bg-secondary, #fbfbfa) !important; +} +[style*="linear-gradient(to left, white 20%, rgba(255, 255, 255, 0) 100%)"] { + background-image: linear-gradient( + to left, + var(--theme--bg-primary, #fff) 20%, + transparent 100% + ) !important; +} +[style*="linear-gradient(to right, white 20%, rgba(255, 255, 255, 0) 100%)"] { + background-image: linear-gradient( + to right, + var(--theme--bg-primary, #fff) 20%, + transparent 100% + ) !important; +} +.notion-body:not(.dark) + :is( + [style*="background: rgb(225, 225, 225)"], + [style*="background-color: rgb(225, 225, 225)"] + ), +.notion-body:not(.dark) + :is( + [style*="background: rgb(239, 239, 238)"], + [style*="background-color: rgb(239, 239, 238)"] + ), +.notion-body:not(.dark) + :is( + [style*="background: rgba(242, 241, 238, 0.6)"], + [style*="background-color: rgba(242, 241, 238, 0.6)"] + ), +.notion-body:not(.dark) + :is( + [style*="background: rgba(55, 53, 47, 0.08)"], + [style*="background-color: rgba(55, 53, 47, 0.08)"] + ), +.notion-body:not(.dark) + [style*="height: 14px; width: 26px; border-radius: 44px;"][style*="rgba"] { + background: var(--theme--bg-hover, rgba(55, 53, 47, 0.08)) !important; +} +.notion-body:not(.dark) + .notion-selectable + .notion-enable-hover[style*="background:"][style*="rgba(241, 241, 239, 1)"], +.notion-body:not(.dark) + .notion-text-block + > [style*="background:"][style*="rgb(241, 241, 239)"] { + background: var(--theme--bg-gray, #f1f1ef) !important; +} +.notion-body:not(.dark) + .notion-selectable + .notion-enable-hover[style*="background:"][style*="rgba(244, 238, 238, 1)"], +.notion-body:not(.dark) + .notion-text-block + > [style*="background:"][style*="rgb(244, 238, 238)"] { + background: var(--theme--bg-brown, #f4eeee) !important; +} +.notion-body:not(.dark) + .notion-selectable + .notion-enable-hover[style*="background:"][style*="rgba(251, 236, 221, 1)"], +.notion-body:not(.dark) + .notion-text-block + > [style*="background:"][style*="rgb(251, 236, 221)"] { + background: var(--theme--bg-orange, #fbecdd) !important; +} +.notion-body:not(.dark) + .notion-selectable + .notion-enable-hover[style*="background:"][style*="rgba(251, 243, 219, 1)"], +.notion-body:not(.dark) + .notion-text-block + > [style*="background:"][style*="rgb(251, 243, 219)"] { + background: var(--theme--bg-yellow, #fbf3db) !important; +} +.notion-body:not(.dark) + .notion-selectable + .notion-enable-hover[style*="background:"][style*="rgba(237, 243, 236, 1)"], +.notion-body:not(.dark) + .notion-text-block + > [style*="background:"][style*="rgb(237, 243, 236)"] { + background: var(--theme--bg-green, #edf3ec) !important; +} +.notion-body:not(.dark) + .notion-selectable + .notion-enable-hover[style*="background:"][style*="rgba(231, 243, 248, 1)"], +.notion-body:not(.dark) + .notion-text-block + > [style*="background:"][style*="rgb(231, 243, 248)"] { + background: var(--theme--bg-blue, #e7f3f8) !important; +} +.notion-body:not(.dark) + .notion-selectable + .notion-enable-hover[style*="background:"][style*="rgba(244, 240, 247, 0.8)"], +.notion-body:not(.dark) + .notion-text-block + > [style*="background:"][style*="rgba(244, 240, 247, 0.8)"] { + background: var(--theme--bg-purple, rgba(244, 240, 247, 0.8)) !important; +} +.notion-body:not(.dark) + .notion-selectable + .notion-enable-hover[style*="background:"][style*="rgba(249, 238, 243, 0.8)"], +.notion-body:not(.dark) + .notion-text-block + > [style*="background:"][style*="rgba(249, 238, 243, 0.8)"] { + background: var(--theme--bg-pink, rgba(249, 238, 243, 0.8)) !important; +} +.notion-body:not(.dark) + .notion-selectable + .notion-enable-hover[style*="background:"][style*="rgba(253, 235, 236, 1)"], +.notion-body:not(.dark) + .notion-text-block + > [style*="background:"][style*="rgb(253, 235, 236)"] { + background: var(--theme--bg-red, #fdebec) !important; +} +.notion-body:not(.dark) + .notion-collection_view-block + [style*="height: 14px; border-radius: 3px; padding-left: 6px;"][style*="rgba(227, 226, 224, 0.5)"], +.notion-body:not(.dark) + .notion-timeline-item-properties + [style*="height: 18px; border-radius: 3px; padding-left: 8px;"][style*="rgba(227, 226, 224, 0.5)"], +.notion-body:not(.dark) + [style*="height: 20px; border-radius: 3px; padding-left: 6px;"][style*="background:"][style*="rgba(227, 226, 224, 0.5)"] { + background: var(--theme--bg-light_gray, rgba(227, 226, 224, 0.5)) !important; +} +.notion-body:not(.dark) + .notion-collection_view-block + [style*="height: 14px; border-radius: 3px; padding-left: 6px;"][style*="rgb(227, 226, 224)"], +.notion-body:not(.dark) + .notion-timeline-item-properties + [style*="height: 18px; border-radius: 3px; padding-left: 8px;"][style*="rgb(227, 226, 224)"], +.notion-body:not(.dark) + [style*="height: 20px; border-radius: 3px; padding-left: 6px;"][style*="background:"][style*="rgb(227, 226, 224)"] { + background: var(--theme--bg-gray, #e3e2e0) !important; +} +.notion-body:not(.dark) + .notion-collection_view-block + [style*="height: 14px; border-radius: 3px; padding-left: 6px;"][style*="rgb(238, 224, 218)"], +.notion-body:not(.dark) + .notion-timeline-item-properties + [style*="height: 18px; border-radius: 3px; padding-left: 8px;"][style*="rgb(238, 224, 218)"], +.notion-body:not(.dark) + [style*="height: 20px; border-radius: 3px; padding-left: 6px;"][style*="background:"][style*="rgb(238, 224, 218)"] { + background: var(--theme--bg-brown, #eee0da) !important; +} +.notion-body:not(.dark) + .notion-collection_view-block + [style*="height: 14px; border-radius: 3px; padding-left: 6px;"][style*="rgb(250, 222, 201)"], +.notion-body:not(.dark) + .notion-timeline-item-properties + [style*="height: 18px; border-radius: 3px; padding-left: 8px;"][style*="rgb(250, 222, 201)"], +.notion-body:not(.dark) + [style*="height: 20px; border-radius: 3px; padding-left: 6px;"][style*="background:"][style*="rgb(250, 222, 201)"] { + background: var(--theme--bg-orange, #fadec9) !important; +} +.notion-body:not(.dark) + .notion-collection_view-block + [style*="height: 14px; border-radius: 3px; padding-left: 6px;"][style*="rgb(253, 236, 200)"], +.notion-body:not(.dark) + .notion-timeline-item-properties + [style*="height: 18px; border-radius: 3px; padding-left: 8px;"][style*="rgb(253, 236, 200)"], +.notion-body:not(.dark) + [style*="height: 20px; border-radius: 3px; padding-left: 6px;"][style*="background:"][style*="rgb(253, 236, 200)"] { + background: var(--theme--bg-yellow, #fdecc8) !important; +} +.notion-body:not(.dark) + .notion-collection_view-block + [style*="height: 14px; border-radius: 3px; padding-left: 6px;"][style*="rgb(219, 237, 219)"], +.notion-body:not(.dark) + .notion-timeline-item-properties + [style*="height: 18px; border-radius: 3px; padding-left: 8px;"][style*="rgb(219, 237, 219)"], +.notion-body:not(.dark) + [style*="height: 20px; border-radius: 3px; padding-left: 6px;"][style*="background:"][style*="rgb(219, 237, 219)"] { + background: var(--theme--bg-green, #dbeddb) !important; +} +.notion-body:not(.dark) + .notion-collection_view-block + [style*="height: 14px; border-radius: 3px; padding-left: 6px;"][style*="rgb(211, 229, 239)"], +.notion-body:not(.dark) + .notion-timeline-item-properties + [style*="height: 18px; border-radius: 3px; padding-left: 8px;"][style*="rgb(211, 229, 239)"], +.notion-body:not(.dark) + [style*="height: 20px; border-radius: 3px; padding-left: 6px;"][style*="background:"][style*="rgb(211, 229, 239)"] { + background: var(--theme--bg-blue, #d3e5ef) !important; +} +.notion-body:not(.dark) + .notion-collection_view-block + [style*="height: 14px; border-radius: 3px; padding-left: 6px;"][style*="rgb(232, 222, 238)"], +.notion-body:not(.dark) + .notion-timeline-item-properties + [style*="height: 18px; border-radius: 3px; padding-left: 8px;"][style*="rgb(232, 222, 238)"], +.notion-body:not(.dark) + [style*="height: 20px; border-radius: 3px; padding-left: 6px;"][style*="background:"][style*="rgb(232, 222, 238)"] { + background: var(--theme--bg-purple, #e8deee) !important; +} +.notion-body:not(.dark) + .notion-collection_view-block + [style*="height: 14px; border-radius: 3px; padding-left: 6px;"][style*="rgb(245, 224, 233)"], +.notion-body:not(.dark) + .notion-timeline-item-properties + [style*="height: 18px; border-radius: 3px; padding-left: 8px;"][style*="rgb(245, 224, 233)"], +.notion-body:not(.dark) + [style*="height: 20px; border-radius: 3px; padding-left: 6px;"][style*="background:"][style*="rgb(245, 224, 233)"] { + background: var(--theme--bg-pink, #f5e0e9) !important; +} +.notion-body:not(.dark) + .notion-collection_view-block + [style*="height: 14px; border-radius: 3px; padding-left: 6px;"][style*="rgb(255, 226, 221)"], +.notion-body:not(.dark) + .notion-timeline-item-properties + [style*="height: 18px; border-radius: 3px; padding-left: 8px;"][style*="rgb(255, 226, 221)"], +.notion-body:not(.dark) + [style*="height: 20px; border-radius: 3px; padding-left: 6px;"][style*="background:"][style*="rgb(255, 226, 221)"] { + background: var(--theme--bg-red, #ffe2dd) !important; +} +.notion-body:not(.dark) + .notion-board-view + .notion-board-group[style*="rgba(249, 249, 245, 0.5)"] + a[style*="background"] { + background: var(--theme--bg-light_gray, #fff) !important; +} +.notion-body:not(.dark) + .notion-board-view + [style*="rgba(249, 249, 245, 0.5)"]:is( + .notion-board-group, + [style*="border-top-left-radius: 5px;"] + ) { + background: var( + --theme--bg_dim-light_gray, + rgba(249, 249, 245, 0.5) + ) !important; +} +.notion-body:not(.dark) + .notion-board-view + .notion-board-group[style*="rgba(247, 247, 245, 0.7)"] + a[style*="background"] { + background: var(--theme--bg-gray, #fff) !important; +} +.notion-body:not(.dark) + .notion-board-view + [style*="rgba(247, 247, 245, 0.7)"]:is( + .notion-board-group, + [style*="border-top-left-radius: 5px;"] + ) { + background: var(--theme--bg_dim-gray, rgba(247, 247, 245, 0.7)) !important; +} +.notion-body:not(.dark) + .notion-board-view + .notion-board-group[style*="rgba(250, 246, 245, 0.7)"] + a[style*="background"] { + background: var(--theme--bg-brown, #fff) !important; +} +.notion-body:not(.dark) + .notion-board-view + [style*="rgba(250, 246, 245, 0.7)"]:is( + .notion-board-group, + [style*="border-top-left-radius: 5px;"] + ) { + background: var(--theme--bg_dim-brown, rgba(250, 246, 245, 0.7)) !important; +} +.notion-body:not(.dark) + .notion-board-view + .notion-board-group[style*="rgba(252, 245, 242, 0.7)"] + a[style*="background"] { + background: var(--theme--bg-orange, #fff) !important; +} +.notion-body:not(.dark) + .notion-board-view + [style*="rgba(252, 245, 242, 0.7)"]:is( + .notion-board-group, + [style*="border-top-left-radius: 5px;"] + ) { + background: var(--theme--bg_dim-orange, rgba(252, 245, 242, 0.7)) !important; +} +.notion-body:not(.dark) + .notion-board-view + .notion-board-group[style*="rgba(250, 247, 237, 0.7)"] + a[style*="background"] { + background: var(--theme--bg-yellow, #fff) !important; +} +.notion-body:not(.dark) + .notion-board-view + [style*="rgba(250, 247, 237, 0.7)"]:is( + .notion-board-group, + [style*="border-top-left-radius: 5px;"] + ) { + background: var(--theme--bg_dim-yellow, rgba(250, 247, 237, 0.7)) !important; +} +.notion-body:not(.dark) + .notion-board-view + .notion-board-group[style*="rgba(244, 248, 243, 0.7)"] + a[style*="background"] { + background: var(--theme--bg-green, #fff) !important; +} +.notion-body:not(.dark) + .notion-board-view + [style*="rgba(244, 248, 243, 0.7)"]:is( + .notion-board-group, + [style*="border-top-left-radius: 5px;"] + ) { + background: var(--theme--bg_dim-green, rgba(244, 248, 243, 0.7)) !important; +} +.notion-body:not(.dark) + .notion-board-view + .notion-board-group[style*="rgba(241, 248, 251, 0.7)"] + a[style*="background"] { + background: var(--theme--bg-blue, #fff) !important; +} +.notion-body:not(.dark) + .notion-board-view + [style*="rgba(241, 248, 251, 0.7)"]:is( + .notion-board-group, + [style*="border-top-left-radius: 5px;"] + ) { + background: var(--theme--bg_dim-blue, rgba(241, 248, 251, 0.7)) !important; +} +.notion-body:not(.dark) + .notion-board-view + .notion-board-group[style*="rgba(249, 246, 252, 0.7)"] + a[style*="background"] { + background: var(--theme--bg-purple, #fff) !important; +} +.notion-body:not(.dark) + .notion-board-view + [style*="rgba(249, 246, 252, 0.7)"]:is( + .notion-board-group, + [style*="border-top-left-radius: 5px;"] + ) { + background: var(--theme--bg_dim-purple, rgba(249, 246, 252, 0.7)) !important; +} +.notion-body:not(.dark) + .notion-board-view + .notion-board-group[style*="rgba(251, 245, 251, 0.7)"] + a[style*="background"] { + background: var(--theme--bg-pink, #fff) !important; +} +.notion-body:not(.dark) + .notion-board-view + [style*="rgba(251, 245, 251, 0.7)"]:is( + .notion-board-group, + [style*="border-top-left-radius: 5px;"] + ) { + background: var(--theme--bg_dim-pink, rgba(251, 245, 251, 0.7)) !important; +} +.notion-body:not(.dark) + .notion-board-view + .notion-board-group[style*="rgba(253, 245, 243, 0.7)"] + a[style*="background"] { + background: var(--theme--bg-red, #fff) !important; +} +.notion-body:not(.dark) + .notion-board-view + [style*="rgba(253, 245, 243, 0.7)"]:is( + .notion-board-group, + [style*="border-top-left-radius: 5px;"] + ) { + background: var(--theme--bg_dim-red, rgba(253, 245, 243, 0.7)) !important; +} +.notion-body:not(.dark) [style*="background: rgba(255, 212, 0, 0.14)"] { + background: var(--theme--bg-yellow, rgba(255, 212, 0, 0.14)) !important; +} +.notion-body:not(.dark) + .notion-callout-block + > div + > [style*="background:"][style*="rgb(241, 241, 239)"] { + background: var(--theme--bg_dim-gray, #f1f1ef) !important; +} +.notion-body:not(.dark) + .notion-callout-block + > div + > [style*="background:"][style*="rgb(244, 238, 238)"] { + background: var(--theme--bg_dim-brown, #f4eeee) !important; +} +.notion-body:not(.dark) + .notion-callout-block + > div + > [style*="background:"][style*="rgb(251, 236, 221)"] { + background: var(--theme--bg_dim-orange, #fbecdd) !important; +} +.notion-body:not(.dark) + .notion-callout-block + > div + > [style*="background:"][style*="rgb(251, 243, 219)"] { + background: var(--theme--bg_dim-yellow, #fbf3db) !important; +} +.notion-body:not(.dark) + .notion-callout-block + > div + > [style*="background:"][style*="rgb(237, 243, 236)"] { + background: var(--theme--bg_dim-green, #edf3ec) !important; +} +.notion-body:not(.dark) + .notion-callout-block + > div + > [style*="background:"][style*="rgb(231, 243, 248)"] { + background: var(--theme--bg_dim-blue, #e7f3f8) !important; +} +.notion-body:not(.dark) + .notion-callout-block + > div + > [style*="background:"][style*="rgba(244, 240, 247, 0.8)"] { + background: var(--theme--bg_dim-purple, rgba(244, 240, 247, 0.8)) !important; +} +.notion-body:not(.dark) + .notion-callout-block + > div + > [style*="background:"][style*="rgba(249, 238, 243, 0.8)"] { + background: var(--theme--bg_dim-pink, rgba(249, 238, 243, 0.8)) !important; +} +.notion-body:not(.dark) + .notion-callout-block + > div + > [style*="background:"][style*="rgb(253, 235, 236)"] { + background: var(--theme--bg_dim-red, #fdebec) !important; +} +[style*="height: 18px; border-radius: 3px; background"][style*="rgba(206, 205, 202, 0.5)"] { + background: var(--theme--bg-light_gray, rgba(206, 205, 202, 0.5)) !important; +} +[style*="color: rgb(35, 131, 226)"], +[style*="fill: rgb(35, 131, 226)"] { + color: var(--theme--accent-primary, #2383e2) !important; +} +[style*="background-color: rgb(35, 131, 226)"], +[style*="background: rgb(35, 131, 226)"] { + background: var(--theme--accent-primary, #2383e2) !important; + color: var(--theme--accent-primary_contrast, #fff) !important; +} +[style*="border-radius: 44px;"] + > [style*="border-radius: 44px; background: white;"] { + background: var(--theme--accent-primary_contrast, #fff) !important; +} +[style*="background-color: rgb(0, 117, 211)"], +[style*="background: rgb(0, 117, 211)"] { + background: var(--theme--accent-primary_hover, #0075d3) !important; + color: var(--theme--accent-primary_contrast, #fff) !important; +} +.notion-table-selection-overlay [style*="border: 2px solid"] { + border-color: var(--theme--accent-primary, #2383e2) !important; +} +.notion-focusable-within:focus-within { + box-shadow: var(--theme--accent-primary, #2383e2) 0 0 0 1px inset, + var(--theme--accent-primary, #2383e2) 0 0 0 2px !important; +} +.notion-focusable:focus-visible { + box-shadow: var(--theme--accent-primary, #2383e2) 0 0 0 1px inset, + var(--theme--accent-primary, #2383e2) 0 0 0 2px !important; +} +[style*="box-shadow: rgb(35, 131, 226) 0px 0px 0px 2px inset"] { + box-shadow: var(--theme--accent-primary, #2383e2) 0 0 0 2px inset !important; +} +#notion-app + .rdp-day:not(.rdp-day_disabled):not(.rdp-day_selected):not( + .rdp-day_value + ):not(.rdp-day_start):not(.rdp-day_end):hover, +.notion-selectable-halo, +::selection, +[style*="background-color: rgba(35, 131, 226, 0."], +[style*="background: rgba(35, 131, 226, 0."] { + background: var( + --theme--accent-primary_transparent, + rgba(35, 131, 226, 0.14) + ) !important; +} +[style*="color: rgb(180, 65, 60)"], +[style*="color: rgb(205, 73, 69)"], +[style*="color: rgb(211, 79, 67)"], +[style*="color: rgb(235, 87, 87)"], +[style*="fill: rgb(180, 65, 60)"], +[style*="fill: rgb(205, 73, 69)"], +[style*="fill: rgb(211, 79, 67)"], +[style*="fill: rgb(235, 87, 87)"] { + color: var(--theme--accent-secondary, #eb5757) !important; +} +#notion-app + .rdp-day_today:not(.rdp-day_selected):not(.rdp-day_value):not( + .rdp-day_start + ):not(.rdp-day_end)::after, +[style*="background-color: rgb(180, 65, 60)"], +[style*="background-color: rgb(205, 73, 69)"], +[style*="background-color: rgb(211, 79, 67)"], +[style*="background-color: rgb(235, 87, 87)"], +[style*="background: rgb(180, 65, 60)"], +[style*="background: rgb(205, 73, 69)"], +[style*="background: rgb(211, 79, 67)"], +[style*="background: rgb(235, 87, 87)"] { + background: var(--theme--accent-secondary, #eb5757) !important; + color: var(--theme--accent-secondary_contrast, #fff) !important; +} +#notion-app + .rdp-day_today:not(.rdp-day_selected):not(.rdp-day_value):not( + .rdp-day_start + ):not(.rdp-day_end), +:is( + [style*="background: rgb(235, 87, 87)"], + [style*="background-color: rgb(235, 87, 87)"], + [style*="background: rgb(180, 65, 60)"], + [style*="background-color: rgb(180, 65, 60)"], + [style*="background: rgb(211, 79, 67)"], + [style*="background-color: rgb(211, 79, 67)"], + [style*="background: rgb(205, 73, 69)"], + [style*="background-color: rgb(205, 73, 69)"] + ) + :is([style*="fill: white;"], [style*="color: white;"]), +:is( + [style*="background: rgb(235, 87, 87)"], + [style*="background-color: rgb(235, 87, 87)"], + [style*="background: rgb(180, 65, 60)"], + [style*="background-color: rgb(180, 65, 60)"], + [style*="background: rgb(211, 79, 67)"], + [style*="background-color: rgb(211, 79, 67)"], + [style*="background: rgb(205, 73, 69)"], + [style*="background-color: rgb(205, 73, 69)"] + ) + + :is([style*="fill: white;"], [style*="color: white;"]) { + color: var(--theme--accent-secondary_contrast, #fff) !important; +} +[style*="background-color: rgba(235, 87, 87, 0.1)"], +[style*="background: rgba(235, 87, 87, 0.1)"] { + background: var( + --theme--accent-secondary_transparent, + rgba(235, 87, 87, 0.1) + ) !important; +} +[style*="border-right: 1px solid rgb(180, 65, 60)"], +[style*="border-right: 1px solid rgb(211, 79, 67)"], +[style*="border: 1px solid rgb(110, 54, 48)"], +[style*="border: 1px solid rgba(235, 87, 87, 0.5)"], +[style*="border: 2px solid rgb(110, 54, 48)"], +[style*="border: 2px solid rgb(227, 134, 118)"] { + border-color: var(--theme--accent-secondary, #eb5757) !important; +} +.notion-body:not(.dark) ::-webkit-scrollbar-track, +.notion-body:not(.dark) ::-webkit-scrollbar-corner { + background: var(--theme--scrollbar-track, #edece9) !important; +} +.notion-body:not(.dark) ::-webkit-scrollbar-thumb { + background: var(--theme--scrollbar-thumb, #d3d1cb) !important; +} +.notion-body:not(.dark) ::-webkit-scrollbar-thumb:hover { + background: var(--theme--scrollbar-thumb_hover, #aeaca6) !important; +} +.notion-body:not(.dark) + .notion-overlay-container + [data-overlay] + > div + > [style*="position: absolute"]:first-child { + background: var(--theme--bg-overlay, rgba(15, 15, 15, 0.6)) !important; +} +.notion-body:not(.dark) + .notion-text-block + .notion-enable-hover[style*="mono"][style*="color:#EB5757"] { + color: var(--theme--code-inline_fg, #eb5757) !important; +} +.notion-body:not(.dark) + .notion-text-block + .notion-enable-hover[style*="mono"][style*="background:rgba(135,131,120,0.15)"] { + background: var( + --theme--code-inline_bg, + rgba(135, 131, 120, 0.15) + ) !important; +} +.notion-body:not(.dark) .notion-code-block > [style*="mono"] { + color: var(--theme--code-block_fg, #37352f) !important; +} +.notion-body:not(.dark) .notion-code-block > div > [style*="background"] { + background: var(--theme--code-block_bg, #f7f6f3) !important; +} +.notion-body:not(.dark) .notion-code-block .token.keyword { + color: var(--theme--code-keyword, #07a) !important; +} +.notion-body:not(.dark) .notion-code-block .token.builtin { + color: var(--theme--code-builtin, #690) !important; +} +.notion-body:not(.dark) .notion-code-block .token.class-name { + color: var(--theme--code-class_name, #dd4a68) !important; +} +.notion-body:not(.dark) .notion-code-block .token.function { + color: var(--theme--code-function, #dd4a68) !important; +} +.notion-body:not(.dark) .notion-code-block .token.boolean { + color: var(--theme--code-boolean, #905) !important; +} +.notion-body:not(.dark) .notion-code-block .token.number { + color: var(--theme--code-number, #905) !important; +} +.notion-body:not(.dark) .notion-code-block .token.string { + color: var(--theme--code-string, #690) !important; +} +.notion-body:not(.dark) .notion-code-block .token.char { + color: var(--theme--code-char, #690) !important; +} +.notion-body:not(.dark) .notion-code-block .token.symbol { + color: var(--theme--code-symbol, #905) !important; +} +.notion-body:not(.dark) .notion-code-block .token.regex { + color: var(--theme--code-regex, #e90) !important; +} +.notion-body:not(.dark) .notion-code-block .token.url { + color: var(--theme--code-url, #9a6e3a) !important; +} +.notion-body:not(.dark) .notion-code-block .token.operator { + color: var(--theme--code-operator, #9a6e3a) !important; +} +.notion-body:not(.dark) .notion-code-block .token.variable { + color: var(--theme--code-variable, #e90) !important; +} +.notion-body:not(.dark) .notion-code-block .token.constant { + color: var(--theme--code-constant, #905) !important; +} +.notion-body:not(.dark) .notion-code-block .token.property { + color: var(--theme--code-property, #905) !important; +} +.notion-body:not(.dark) .notion-code-block .token.punctuation { + color: var(--theme--code-punctuation, #999) !important; +} +.notion-body:not(.dark) .notion-code-block .token.important { + color: var(--theme--code-important, #e90) !important; +} +.notion-body:not(.dark) .notion-code-block .token.comment { + color: var(--theme--code-comment, #708090) !important; +} +.notion-body:not(.dark) .notion-code-block .token.tag { + color: var(--theme--code-tag, #905) !important; +} +.notion-body:not(.dark) .notion-code-block .token.attr-name { + color: var(--theme--code-attr_name, #690) !important; +} +.notion-body:not(.dark) .notion-code-block .token.attr-value { + color: var(--theme--code-attr_value, #07a) !important; +} +.notion-body:not(.dark) .notion-code-block .token.namespace { + color: var(--theme--code-namespace, #37352f) !important; +} +.notion-body:not(.dark) .notion-code-block .token.prolog { + color: var(--theme--code-prolog, #708090) !important; +} +.notion-body:not(.dark) .notion-code-block .token.doctype { + color: var(--theme--code-doctype, #708090) !important; +} +.notion-body:not(.dark) .notion-code-block .token.cdata { + color: var(--theme--code-cdata, #708090) !important; +} +.notion-body:not(.dark) .notion-code-block .token.entity { + color: var(--theme--code-entity, #9a6e3a) !important; +} +.notion-body:not(.dark) .notion-code-block .token.atrule { + color: var(--theme--code-atrule, #07a) !important; +} +.notion-body:not(.dark) .notion-code-block .token.selector { + color: var(--theme--code-selector, #690) !important; +} +.notion-body:not(.dark) .notion-code-block .token.inserted { + color: var(--theme--code-inserted, #690) !important; +} +.notion-body:not(.dark) .notion-code-block .token.deleted { + color: var(--theme--code-deleted, #905) !important; +} diff --git a/src/core/theming/patches.css b/src/core/theming/patches.css deleted file mode 100644 index 7f307d8..0000000 --- a/src/core/theming/patches.css +++ /dev/null @@ -1,253 +0,0 @@ -/** - * notion-enhancer: theming - * (c) 2021 dragonwocky (https://dragonwocky.me/) - * (https://notion-enhancer.github.io/) under the MIT license - */ - -/** layout **/ - -.notion-frame - > .notion-scroller.vertical.horizontal - > .pseudoSelection - > div - > div:nth-child(3)[style*='width: 900px'], -.notion-frame - > .notion-scroller.vertical.horizontal - > .pseudoSelection - + div - > :nth-child(1)[style*='width: 900px'], -.notion-frame - > .notion-scroller.vertical.horizontal - > :nth-child(2) - > :nth-child(2)[style*='display: flex; width: 100%; justify-content: center;'] - > :nth-child(1)[style*='width: 900px'] { - width: var(--theme--page-width) !important; -} -.notion-frame - > .notion-scroller.vertical.horizontal - > .pseudoSelection - > div - > div:nth-child(3):not([style*='width: 900px']), -.notion-frame - > .notion-scroller.vertical.horizontal - > .pseudoSelection - + div - > :nth-child(1):not([style*='width: 900px']), -.notion-frame - > .notion-scroller.vertical.horizontal - > :nth-child(2) - > :nth-child(2)[style*='display: flex; width: 100%; justify-content: center;'] - > :nth-child(1):not([style*='width: 900px']) { - width: var(--theme--page-width_full) !important; -} -.notion-page-content [style*='width: 100%; max-width:'][style*='align-self: center;'] { - max-width: 100% !important; -} -.notion-frame [style*='padding-right: calc(96px + env(safe-area-inset-right));'] { - padding-right: var(--theme--page-padding) !important; -} -.notion-frame [style*='padding-left: calc(96px + env(safe-area-inset-left));'] { - padding-left: var(--theme--page-padding) !important; -} -[style^='position: relative; width: 100%; display: flex; flex-direction: column; align-items: center; height: 30vh;'], -[style^='position: relative; width: 100%; display: flex; flex-direction: column; align-items: center; height: 30vh;'] - img { - height: var(--theme--page_banner-height) !important; - background: transparent !important; -} - -.notion-peek-renderer > :nth-child(2) { - max-width: var(--theme--page_preview-width) !important; -} -.notion-peek-renderer - .notion-scroller.vertical - [style*='padding-left: calc(126px + env(safe-area-inset-left));'] { - padding-left: var(--theme--page_preview-padding) !important; -} -.notion-peek-renderer - .notion-scroller.vertical - [style*='padding-right: calc(126px + env(safe-area-inset-right));'] { - padding-right: var(--theme--page_preview-padding) !important; -} -.notion-peek-renderer - .notion-scroller.vertical - [style*='margin-left: calc(126px + env(safe-area-inset-left));'] { - margin-left: var(--theme--page_preview-padding) !important; -} -.notion-peek-renderer - .notion-scroller.vertical - [style*='margin-right: calc(126px + env(safe-area-inset-right));'] { - margin-right: var(--theme--page_preview-padding) !important; -} -.notion-peek-renderer .notion-page-content { - padding-left: var(--theme--page_preview-padding) !important; - padding-right: var(--theme--page_preview-padding) !important; - width: 100%; -} -.notion-peek-renderer - .notion-scroller.vertical - [style*='position: relative; width: 100%; display: flex; flex-direction: column; align-items: center; height: 20vh;'], -.notion-peek-renderer - .notion-scroller.vertical - [style*='position: relative; width: 100%; display: flex; flex-direction: column; align-items: center; height: 20vh;'] - img { - height: var(--theme--page_preview_banner-height) !important; - background: transparent !important; -} - -.notion-topbar-action-buttons { - width: auto !important; -} -.notion-cursor-listener > [style*='z-index: 102'] { - z-index: 99 !important; -} - -/* typography */ - -[style*='Segoe UI'] { - font-family: var(--theme--font_sans) !important; -} -[style*='Georgia'] { - font-family: var(--theme--font_serif) !important; -} -[style*='iawriter-mono'] { - font-family: var(--theme--font_mono) !important; -} -[style*='SFMono-Regular'] { - font-family: var(--theme--font_code) !important; -} - -/** remove white pixels in iframe corners **/ - -.notion-page-content iframe { - border-radius: 0px !important; -} - -/** scrollbars **/ - -::-webkit-scrollbar-track, -::-webkit-scrollbar-corner { - background: var(--theme--scrollbar_track) !important; -} -::-webkit-scrollbar-thumb { - background: var(--theme--scrollbar_thumb) !important; -} -::-webkit-scrollbar-thumb:hover { - background: var(--theme--scrollbar_thumb-hover) !important; -} - -/** consistent corner button styling **/ - -.notion-overlay-container - [style*='border-radius: 3px;'][style*='position: relative; max-width: calc(100vw - 24px); box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 4px; overflow: hidden;'][style*='padding: 4px 8px; font-size: 12px; line-height: 1.4; font-weight: 500;'] { - background: var(--theme--ui_tooltip) !important; - box-shadow: var(--theme--ui_shadow) 0px 1px 4px !important; - color: var(--theme--ui_tooltip-title) !important; -} -.notion-overlay-container - [style*='border-radius: 3px;'][style*='position: relative; max-width: calc(100vw - 24px); box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 4px; overflow: hidden;'][style*='padding: 4px 8px; font-size: 12px; line-height: 1.4; font-weight: 500;'] - [style*='color: '] { - color: var(--theme--ui_tooltip-description) !important; -} -.onboarding-checklist-button > .graduationCap + .notion-focusable { - background: var(--theme--ui_tooltip) !important; -} -.onboarding-checklist-button .closeSmall { - fill: var(--theme--ui_tooltip-title) !important; -} -.graduationCap { - fill: var(--theme--icon) !important; -} -.notion-help-button, -.onboarding-checklist-button { - opacity: 1 !important; - color: var(--theme--icon); - fill: var(--theme--icon); - background: var(--theme--ui_corner_action) !important; - box-shadow: var(--theme--ui_shadow, rgba(15, 15, 15, 0.15)) 0px 0px 0px 1px, - var(--theme--ui_shadow, rgba(15, 15, 15, 0.15)) 0px 2px 4px !important; - cursor: pointer; -} -.notion-help-button:hover, -.onboarding-checklist-button:hover { - background: var(--theme--ui_corner_action-hover) !important; -} -.notion-help-button:active, -.onboarding-checklist-button:active { - background: var(--theme--ui_corner_action-active) !important; -} - -/* backgrounds */ - -[style*='height: calc(100% + 17px); background:'][style*='width: 20px; margin-left: -20px; margin-top: -17px;'], -.notion-board-view .notion-focusable[role='button'][style*='height: 33px; width: 35px'], -.notion-board-view - > :first-child - > :first-child - > :last-child[style*='background'][style*='margin-left: 20px'], -.notion-discussion-input > div > div[style*='background'], -.notion-body.dark - .notion-default-overlay-container - [style*='grid-template-columns: [boolean-start] 60px [boolean-end property-start] 120px [property-end opererator-start] 110px [operator-end value-start] auto [value-end menu-start] 32px [menu-end];'] - [style*='grid-column: property-start / value-end; background: rgba(255, 255, 255, 0.02);'], -.notion-body:not(.dark) - .notion-default-overlay-container - [style*='grid-template-columns: [boolean-start] 60px [boolean-end property-start] 120px [property-end opererator-start] 110px [operator-end value-start] auto [value-end menu-start] 32px [menu-end];'] - [style*='grid-column: property-start / value-end; background: rgba(0, 0, 0, 0.02);'], -.notion-board-view [style*='width: 20px; margin-left: -20px; margin-top: -8px;'], -.notion-page-block > div > div > div[style*='background-color: white;'], -.line-numbers.notion-code-block + div .notion-focusable:not(:hover), -.notion-overlay-container - [style*='position: relative; max-width: calc(100vw - 24px); box-shadow:'] - > [style*='display: flex; align-items: center; padding: 8px 10px; width: 100%; background:'], -.notion-default-overlay-container - > div:nth-child(3) - > div - > div:nth-child(2) - > div:nth-child(2) - > div - > div - > div - > div - > div - > div:nth-child(2)[style*='position: absolute; display: inline-flex; min-width: 100%; height: 32px; z-index: 1; background:'], -.notion-default-overlay-container - > div:nth-child(2) - > div - > div:nth-child(2) - > div:nth-child(2) - > div - > div - > div - > div - > div - > div:nth-child(2)[style*='position: absolute; display: inline-flex; min-width: 100%; height: 32px; z-index: 1; background:'], -.notion-frame .notion-scroller[style*='background:'], -.notion-page-template-modal .notion-scroller[style*='background:'], -.notion-peek-renderer .notion-scroller[style*='background:'], -.notion-frame > div > div > div[style*='max-width: 100%'][style*='background-color'], -.notion-peek-renderer - > div - > .notion-scroller - > div - > div[style*='max-width: 100%'][style*='background-color'], -.notion-page-template-modal - > div - > .notion-scroller - > div - > div[style*='max-width: 100%'][style*='background-color'], -.notion-selectable.notion-collection_view-block - .notion-board-view - > .notion-selectable.notion-collection_view-block - > :first-child - > [style*='width: 20px'], -.notion-body.dark - [style*='background: linear-gradient(rgba(47, 52, 55, 0) 0px, rgb(47, 52, 55) 10px, rgb(47, 52, 55) 100%);'], -.notion-body:not(.dark) - [style*='background: linear-gradient(rgba(255, 255, 255, 0) 0px, white 10px, white 100%);'], -.notion-body.dark .notion-collection_view_page-block [style*='background: rgb(47, 52, 55);'], -.notion-body:not(.dark) - .notion-collection_view_page-block - [style*='background: white;']:not([style*='box-shadow: rgba(15, 15, 15, 0.1) 0px 0px 0px 1px, rgba(15, 15, 15, 0.1) 0px 2px 4px;']) { - background: transparent !important; -} diff --git a/src/core/variables.css b/src/core/variables.css index 2ad9f3c..9f5e775 100644 --- a/src/core/variables.css +++ b/src/core/variables.css @@ -14,6 +14,7 @@ body.dark { --theme--font-mono: iawriter-mono, Nitti, Menlo, Courier, monospace; --theme--font-code: SFMono-Regular, Consolas, "Liberation Mono", Menlo, Courier, monospace; + --theme--fg-primary: rgba(255, 255, 255, 0.81); --theme--fg-secondary: rgb(155, 155, 155); --theme--fg-border: rgb(47, 47, 47); @@ -26,8 +27,10 @@ body.dark { --theme--fg-purple: rgb(157, 104, 211); --theme--fg-pink: rgb(209, 87, 150); --theme--fg-red: rgb(223, 84, 82); + --theme--bg-primary: rgb(25, 25, 25); --theme--bg-secondary: rgb(32, 32, 32); + --theme--bg-overlay: rgba(15, 15, 15, 0.6); --theme--bg-hover: rgba(255, 255, 255, 0.055); --theme--bg-light_gray: rgb(55, 55, 55); --theme--bg-gray: rgb(90, 90, 90); @@ -49,6 +52,7 @@ body.dark { --theme--bg_dim-purple: rgb(31, 29, 33); --theme--bg_dim-pink: rgb(35, 28, 31); --theme--bg_dim-red: rgb(36, 30, 29); + --theme--accent-primary: rgb(35, 131, 226); --theme--accent-primary_hover: rgb(0, 117, 211); --theme--accent-primary_contrast: rgb(255, 255, 255); @@ -56,9 +60,11 @@ body.dark { --theme--accent-secondary: rgb(235, 87, 87); --theme--accent-secondary_contrast: rgb(255, 255, 255); --theme--accent-secondary_transparent: rgba(235, 87, 87, 0.1); + --theme--scrollbar-track: rgba(202, 204, 206, 0.04); --theme--scrollbar-thumb: #474c50; --theme--scrollbar-thumb_hover: rgba(202, 204, 206, 0.3); + --theme--code-inline_fg: #eb5757; --theme--code-inline_bg: rgba(135, 131, 120, 0.15); --theme--code-block_fg: rgba(255, 255, 255, 0.81); @@ -105,6 +111,7 @@ body:not(.dark) { --theme--font-mono: iawriter-mono, Nitti, Menlo, Courier, monospace; --theme--font-code: SFMono-Regular, Consolas, "Liberation Mono", Menlo, Courier, monospace; + --theme--fg-primary: rgb(55, 53, 47); --theme--fg-secondary: rgba(25, 23, 17, 0.6); --theme--fg-border: rgb(233, 233, 231); @@ -117,8 +124,10 @@ body:not(.dark) { --theme--fg-purple: rgb(144, 101, 176); --theme--fg-pink: rgb(193, 76, 138); --theme--fg-red: rgb(212, 76, 71); + --theme--bg-primary: rgb(255, 255, 255); --theme--bg-secondary: rgb(251, 251, 250); + --theme--bg-overlay: rgba(15, 15, 15, 0.6); --theme--bg-hover: rgba(55, 53, 47, 0.08); --theme--bg-light_gray: rgba(227, 226, 224, 0.5); --theme--bg-gray: rgb(227, 226, 224); @@ -140,6 +149,7 @@ body:not(.dark) { --theme--bg_dim-purple: rgba(249, 246, 252, 0.7); --theme--bg_dim-pink: rgba(251, 245, 251, 0.7); --theme--bg_dim-red: rgba(253, 245, 243, 0.7); + --theme--accent-primary: rgb(35, 131, 226); --theme--accent-primary_hover: rgb(0, 117, 211); --theme--accent-primary_contrast: rgb(255, 255, 255); @@ -147,9 +157,11 @@ body:not(.dark) { --theme--accent-secondary: rgb(235, 87, 87); --theme--accent-secondary_contrast: rgb(255, 255, 255); --theme--accent-secondary_transparent: rgba(235, 87, 87, 0.1); + --theme--scrollbar-track: #edece9; --theme--scrollbar-thumb: #d3d1cb; --theme--scrollbar-thumb_hover: #aeaca6; + --theme--code-inline_fg: #eb5757; --theme--code-inline_bg: rgba(135, 131, 120, 0.15); --theme--code-block_fg: rgb(55, 53, 47);