mirror of
https://github.com/notion-enhancer/notion-enhancer.git
synced 2025-04-05 13:19:03 +00:00
colour theming: line backgrounds
This commit is contained in:
parent
7e593bfa6f
commit
a5db291250
@ -29,7 +29,7 @@
|
||||
--theme-text_brown: rgb(147, 114, 100);
|
||||
--theme-text_orange: rgb(255, 163, 68);
|
||||
--theme-text_yellow: rgb(255, 220, 73);
|
||||
--theme-text_teal: rgb(77, 171, 154);
|
||||
--theme-text_green: rgb(50, 169, 104);
|
||||
--theme-text_blue: rgb(82, 156, 202);
|
||||
--theme-text_purple: rgb(154, 109, 215);
|
||||
--theme-text_pink: rgb(226, 85, 161);
|
||||
@ -43,6 +43,15 @@
|
||||
--theme-bg_purple: rgba(91, 49, 148, 0.74);
|
||||
--theme-bg_pink: rgba(243, 61, 159, 0.5);
|
||||
--theme-bg_red: rgb(122, 20, 20);
|
||||
--theme-line_gray: rgba(126, 128, 129, 0.301);
|
||||
--theme-line_brown: #50331fad;
|
||||
--theme-line_orange: rgba(255, 153, 0, 0.315);
|
||||
--theme-line_yellow: rgba(183, 156, 0, 0.445);
|
||||
--theme-line_green: rgba(50, 129, 47, 0.39);
|
||||
--theme-line_blue: rgba(0, 90, 146, 0.521);
|
||||
--theme-line_purple: rgba(90, 49, 148, 0.349);
|
||||
--theme-line_pink: rgba(243, 61, 158, 0.301);
|
||||
--theme-line_red: rgba(122, 20, 20, 0.623);
|
||||
}
|
||||
|
||||
/** backgrounds **/
|
||||
@ -104,66 +113,93 @@
|
||||
background: var(--theme-primary_indicator) !important;
|
||||
}
|
||||
|
||||
[style*='color:rgba(151,154,155,0.95)'] {
|
||||
color: var(--theme-text_gray) !important;
|
||||
}
|
||||
[style*='background: rgba(151, 154, 155, 0.5)'],
|
||||
[style*='background:rgb(69,75,78)'] {
|
||||
background: var(--theme-bg_gray) !important;
|
||||
}
|
||||
[style*='color:rgba(151,154,155,0.95)'] {
|
||||
color: var(--theme-text_gray) !important;
|
||||
[style*='background: rgb(69, 75, 78)'] {
|
||||
background: var(--theme-line_gray) !important;
|
||||
}
|
||||
[style*='color:rgb(147,114,100)'] {
|
||||
color: var(--theme-text_brown) !important;
|
||||
}
|
||||
[style*='background: rgba(147, 114, 100, 0.5)'],
|
||||
[style*='background:rgb(67,64,64)'] {
|
||||
background: var(--theme-bg_brown) !important;
|
||||
}
|
||||
[style*='color:rgb(147,114,100)'] {
|
||||
color: var(--theme-text_brown) !important;
|
||||
[style*='background: rgb(67, 64, 64)'] {
|
||||
background: var(--theme-line_brown) !important;
|
||||
}
|
||||
[style*='color:rgb(255,163,68)'] {
|
||||
color: var(--theme-text_orange) !important;
|
||||
}
|
||||
[style*='background: rgba(255, 163, 68, 0.5)'],
|
||||
[style*='background:rgb(89,74,58)'] {
|
||||
background: var(--theme-bg_orange) !important;
|
||||
}
|
||||
[style*='color:rgb(255,163,68)'] {
|
||||
color: var(--theme-text_orange) !important;
|
||||
[style*='background: rgb(89, 74, 58)'] {
|
||||
background: var(--theme-line_orange) !important;
|
||||
}
|
||||
[style*='color:rgb(255,220,73)'] {
|
||||
color: var(--theme-text_yellow) !important;
|
||||
}
|
||||
[style*='background: rgba(255, 220, 73, 0.5)'],
|
||||
[style*='background:rgb(89,86,59)'] {
|
||||
background: var(--theme-bg_yellow) !important;
|
||||
}
|
||||
[style*='color:rgb(255,220,73)'] {
|
||||
color: var(--theme-text_yellow) !important;
|
||||
[style*='background: rgb(89, 86, 59)'] {
|
||||
background: var(--theme-line_yellow) !important;
|
||||
}
|
||||
[style*='color:rgb(77,171,154)'] {
|
||||
color: var(--theme-text_green) !important;
|
||||
}
|
||||
[style*='background: rgba(77, 171, 154, 0.5)'],
|
||||
[style*='background:rgb(53,76,75)'] {
|
||||
background: var(--theme-bg_green) !important;
|
||||
}
|
||||
[style*='color:rgb(77,171,154)'] {
|
||||
color: var(--theme-text_green) !important;
|
||||
[style*='background: rgb(53, 76, 75)'] {
|
||||
background: var(--theme-line_green) !important;
|
||||
}
|
||||
[style*='color:rgb(82,156,202)'] {
|
||||
color: var(--theme-text_blue) !important;
|
||||
}
|
||||
[style*='background: rgba(82, 156, 202, 0.5)'],
|
||||
[style*='background:rgb(54,73,84)'] {
|
||||
background: var(--theme-bg_blue) !important;
|
||||
}
|
||||
[style*='color:rgb(82,156,202)'] {
|
||||
color: var(--theme-text_blue) !important;
|
||||
[style*='background: rgb(54, 73, 84)'] {
|
||||
background: var(--theme-line_blue) !important;
|
||||
}
|
||||
[style*='color:rgb(154,109,215)'] {
|
||||
color: var(--theme-text_purple) !important;
|
||||
}
|
||||
[style*='background: rgba(154, 109, 215, 0.5)'],
|
||||
[style*='background:rgb(68,63,87)'] {
|
||||
background: var(--theme-bg_purple) !important;
|
||||
}
|
||||
[style*='color:rgb(154,109,215)'] {
|
||||
color: var(--theme-text_purple) !important;
|
||||
[style*='background: rgb(68, 63, 87)'] {
|
||||
background: var(--theme-line_purple) !important;
|
||||
}
|
||||
[style*='color:rgb(226,85,161)'] {
|
||||
color: var(--theme-text_pink) !important;
|
||||
}
|
||||
[style*='background: rgba(226, 85, 161, 0.5)'],
|
||||
[style*='background:rgb(83,59,76)'] {
|
||||
background: var(--theme-bg_pink) !important;
|
||||
}
|
||||
[style*='color:rgb(226,85,161)'] {
|
||||
color: var(--theme-text_pink) !important;
|
||||
[style*='background: rgb(83, 59, 76)'] {
|
||||
background: var(--theme-line_pink) !important;
|
||||
}
|
||||
[style*='color:rgb(255,115,105)'] {
|
||||
color: var(--theme-text_red) !important;
|
||||
}
|
||||
[style*='background: rgba(255, 115, 105, 0.5);'],
|
||||
[style*='background:rgb(89,65,65)'] {
|
||||
background: var(--theme-bg_red) !important;
|
||||
}
|
||||
[style*='color:rgb(255,115,105)'] {
|
||||
color: var(--theme-text_red) !important;
|
||||
[style*='background: rgb(89, 65, 65)'] {
|
||||
background: var(--theme-line_red) !important;
|
||||
}
|
||||
|
Binary file not shown.
Before Width: | Height: | Size: 234 KiB After Width: | Height: | Size: 234 KiB |
Loading…
Reference in New Issue
Block a user