Update:
- Tables have been visually updated
- Header is red with white text
- Rows and Columns have alternating colors
- Lightmode Code Background has been adjusted dark for easier visibility
Update:
Updates:
In the ITS Theme CSS sheet there is this code block:
/*Checkbox Checked color*/
.markdown-preview-view .task-list-item-checkbox:checked {
border: none;
background-color: var(--accent2);
}
--accent2
is a blue color which makes the checked checkbox blue instead of “ITS red”.
Yep, I guess if you want a theme with no blue in it, then adding this to a snippet will remove the blue:
.theme-dark, .theme-light {
--accent2: var(--accent);
--accent2-lite: var(--lite-accent);
}
The only thing to keep in mind is that links to pages not created yet will be hard to differentiate from links to pages that are created. I’ll come up with a fix for that sometime soon.
@SlRvb
Actually, I would not want to make a drastic amendment like that: just the checkbox color needs to be adjusted to red for the red theme - blue does not make sense.
So I added this snippet:
/*Checkbox Checked color: red instead of blue*/
.markdown-preview-view .task-list-item-checkbox:checked {
border: none;
background-color: var(--accent);
}
/*Bullet List New*/
, delete the last forward slash /
/*Bullet List Original**
and replace the last asterisk with a forward slash/
The reason for this change was to stop the stuttering scroll issue when the cursor is over editor mode.
Stuttering scroll issue with previous bullet list style:
No stuttering scroll issue with new bullet list style:
This is awesome! Thanks for fixing the bug! Love the new style too @SlRvb!
<i></i>
: Instructions Hereb[alt*="<name here>"] {}
<b></b>
is what you have to use for the new “blockquotes”<i></i>
isn’t automatically italicized3 New Alternate “Themes” using ITS as a base. Get them on the ITS Theme Repo. Read more about them (like which fonts are installed, etc) here.
p+ct
p+cct
or p+cb
p+ccb
to see if you need to move them with the new attributes.(With permission from kanban’s creator @Maned )
SlRvb: Recreated
ITS Dark
Style Settings has more features to further customize the ITS theme!
(Naked embeds coming soon)
Yeah, that one.
@SlRvb you left out Preview font size.
table
: bolds text on left side and colors it a solid dark colort-c
: Centers table (also a toggle in the Style Settings)nob
to the link: ![[Embed|nob]]
nlk
to the link: ![[Embed|nlk]]
em
to the link: ![[Embed|em]]
Hello @SIRvb!
First of all, thank you very much for this amazing theme! I’m using the Style Settings to tweak the colors.
I have question. Is there a snippet to hide the underline from Headers?
Since a use a lot headers, without the lines I would have a clean look.
Thanks!
recall
: hides section, shows text when hovering over it
<s class="recall">text here</s>
to hide your sections