mirror of
https://github.com/notion-enhancer/notion-enhancer.git
synced 2025-04-05 05:09:03 +00:00
rename to light_gray
This commit is contained in:
parent
6178c59951
commit
195c0917ff
@ -305,8 +305,8 @@ function css() {
|
||||
|
||||
.notion-body:not(.dark) [style*='background: ${lightGray.light['tag']}']${isTag},
|
||||
.notion-body.dark [style*='background: ${lightGray.dark['tag']}']${isTag} {
|
||||
background: var(--theme--tag_light-gray) !important;
|
||||
color: var(--theme--tag_light-gray-text) !important;
|
||||
background: var(--theme--tag_light_gray) !important;
|
||||
color: var(--theme--tag_light_gray-text) !important;
|
||||
}
|
||||
|
||||
.notion-body:not(.dark) [style*='background: ${
|
||||
@ -315,8 +315,8 @@ function css() {
|
||||
.notion-body.dark [style*='background: ${
|
||||
lightGray.dark['board-text']
|
||||
}']${isTagPalette} {
|
||||
background: var(--theme--tag_light-gray) !important;
|
||||
color: var(--theme--tag_light-gray-text) !important;
|
||||
background: var(--theme--tag_light_gray) !important;
|
||||
color: var(--theme--tag_light_gray-text) !important;
|
||||
}
|
||||
|
||||
.notion-body:not(.dark)
|
||||
@ -327,8 +327,8 @@ function css() {
|
||||
[style*='background-color: ${lightGray.light['board']}'],
|
||||
.notion-body.dark .notion-board-view > .notion-selectable > :first-child > :nth-child(2)
|
||||
[style*='background-color: ${lightGray.dark['board']}'] {
|
||||
background: var(--theme--board_light-gray) !important;
|
||||
color: var(--theme--board_light-gray-text) !important;
|
||||
background: var(--theme--board_light_gray) !important;
|
||||
color: var(--theme--board_light_gray-text) !important;
|
||||
}
|
||||
.notion-body:not(.dark)
|
||||
.notion-board-group[style*='background-color: ${lightGray.light['board']}']
|
||||
@ -336,13 +336,13 @@ function css() {
|
||||
.notion-body.dark
|
||||
.notion-board-group[style*='background-color: ${lightGray.dark['board']}']
|
||||
> [data-block-id] > [rel='noopener noreferrer'] {
|
||||
background: var(--theme--board_light-gray-card) !important;
|
||||
color: var(--theme--board_light-gray-card_text) !important;
|
||||
background: var(--theme--board_light_gray-card) !important;
|
||||
color: var(--theme--board_light_gray-card_text) !important;
|
||||
}
|
||||
.notion-body.dark
|
||||
.notion-board-group[style*='background-color: ${lightGray.dark['board']}']
|
||||
> [data-block-id] > [rel='noopener noreferrer'] [placeholder="Untitled"] {
|
||||
-webkit-text-fill-color: var(--theme--board_light-gray-card_text, var(--theme--board_light-gray-text)) !important;
|
||||
-webkit-text-fill-color: var(--theme--board_light_gray-card_text, var(--theme--board_light_gray-text)) !important;
|
||||
}
|
||||
.notion-body:not(.dark)
|
||||
.notion-board-group[style*='background-color: ${lightGray.light['board']}']
|
||||
@ -360,8 +360,8 @@ function css() {
|
||||
.notion-body:not(.dark) .notion-board-view
|
||||
[style*='fill: ${lightGray.light['board-text']}'],
|
||||
.notion-body.dark .notion-board-view [style*='fill: ${lightGray.dark['board-text']}'] {
|
||||
color: var(--theme--board_light-gray-text) !important;
|
||||
fill: var(--theme--board_light-gray-text) !important;
|
||||
color: var(--theme--board_light_gray-text) !important;
|
||||
fill: var(--theme--board_light_gray-text) !important;
|
||||
}
|
||||
`;
|
||||
|
||||
@ -509,7 +509,7 @@ function vars(mode) {
|
||||
const prefix = key.split('-')[0],
|
||||
value = lightGray[mode][key];
|
||||
if (!sets[prefix]) sets[prefix] = '';
|
||||
key = [`--theme--${prefix}_light-gray`, ...key.split('-').slice(1)].join('-');
|
||||
key = [`--theme--${prefix}_light_gray`, ...key.split('-').slice(1)].join('-');
|
||||
sets[prefix] += `${key}: ${value};\n`;
|
||||
}
|
||||
|
||||
|
@ -109,8 +109,8 @@
|
||||
--theme--callout_red: rgb(253, 235, 236);
|
||||
--theme--callout_red-text: currentColor;
|
||||
|
||||
--theme--tag_light-gray: rgba(227, 226, 224, 0.5);
|
||||
--theme--tag_light-gray-text: rgb(50, 48, 44);
|
||||
--theme--tag_light_gray: rgba(227, 226, 224, 0.5);
|
||||
--theme--tag_light_gray-text: rgb(50, 48, 44);
|
||||
--theme--tag_gray: rgb(227, 226, 224);
|
||||
--theme--tag_gray-text: rgb(50, 48, 44);
|
||||
--theme--tag_brown: rgb(238, 224, 218);
|
||||
@ -130,10 +130,10 @@
|
||||
--theme--tag_red: rgb(255, 226, 221);
|
||||
--theme--tag_red-text: rgb(93, 23, 21);
|
||||
|
||||
--theme--board_light-gray: rgba(249, 249, 245, 0.5);
|
||||
--theme--board_light-gray-card: white;
|
||||
--theme--board_light-gray-card_text: inherit;
|
||||
--theme--board_light-gray-text: rgba(145, 145, 142, 0.5);
|
||||
--theme--board_light_gray: rgba(249, 249, 245, 0.5);
|
||||
--theme--board_light_gray-card: white;
|
||||
--theme--board_light_gray-card_text: inherit;
|
||||
--theme--board_light_gray-text: rgba(145, 145, 142, 0.5);
|
||||
--theme--board_gray: rgba(247, 247, 245, 0.7);
|
||||
--theme--board_gray-card: white;
|
||||
--theme--board_gray-card_text: inherit;
|
||||
@ -295,8 +295,8 @@
|
||||
--theme--callout_red: rgb(94, 52, 54);
|
||||
--theme--callout_red-text: currentColor;
|
||||
|
||||
--theme--tag_light-gray: rgba(71, 76, 80, 0.7);
|
||||
--theme--tag_light-gray-text: rgba(255, 255, 255, 0.88);
|
||||
--theme--tag_light_gray: rgba(71, 76, 80, 0.7);
|
||||
--theme--tag_light_gray-text: rgba(255, 255, 255, 0.88);
|
||||
--theme--tag_gray: rgb(71, 76, 80);
|
||||
--theme--tag_gray-text: rgba(255, 255, 255, 0.88);
|
||||
--theme--tag_brown: rgb(92, 71, 61);
|
||||
@ -316,10 +316,10 @@
|
||||
--theme--tag_red: rgb(122, 54, 59);
|
||||
--theme--tag_red-text: rgba(255, 255, 255, 0.88);
|
||||
|
||||
--theme--board_light-gray: rgba(51, 55, 59, 0.7);
|
||||
--theme--board_light-gray-card: rgba(60, 65, 68, 0.7);
|
||||
--theme--board_light-gray-card_text: inherit;
|
||||
--theme--board_light-gray-text: rgba(107, 112, 116, 0.7);
|
||||
--theme--board_light_gray: rgba(51, 55, 59, 0.7);
|
||||
--theme--board_light_gray-card: rgba(60, 65, 68, 0.7);
|
||||
--theme--board_light_gray-card_text: inherit;
|
||||
--theme--board_light_gray-text: rgba(107, 112, 116, 0.7);
|
||||
--theme--board_gray: rgb(51, 55, 59);
|
||||
--theme--board_gray-card: rgb(60, 65, 68);
|
||||
--theme--board_gray-card_text: inherit;
|
||||
|
Loading…
Reference in New Issue
Block a user