California Coast Theme

Oh, glad to know I’m not messing anything up (other than having too many really hideous windows open all the time?) Maybe the theme aesthetics will help me finally mend my ways.

Is there an easy way to override the “Pretty Quotes” for the block quote setting? I’ve tried to edit the CSS for this, but I’ve not found the right part to change. This is the only thing keeping me from switching to this theme from Minimal.

I am encountering exactly the same issue.

Happens from the moment I have text in italics between brackets (this).

I also have the issue when using Minimal as theme, or Gitsidian; when using the default Obisidian theme there is no PDF export issue.

Any update on this?

@AutonomyGaps for reference, here’s all the blockquote related CSS:


Here’s some CSS that will remove the quote icon in the editor:

.cc-pretty-editor .cm-formatting-quote {
  color: var(--text-normal) !important;
}

.cc-pretty-editor .cm-formatting-quote:before {
  display: none;
}

And you can use something like this to remove it from preview mode:

.cc-pretty-preview .markdown-preview-section blockquote:before {
	display: none;
}
1 Like

Hmm, interesting. Have you set a specific Body Font within the California Coast Settings plugin? If not, I’d be curious to know what happens if you set it to Inter or a default system font like Arial

Have you set a specific Body Font within the California Coast Settings plugin?

No, I did not.

If not, I’d be curious to know what happens if you set it to Inter or a default system font like Arial

After setting the “Body Font” to Inter: issue is gone; PDF export works fine :slight_smile:.

Wow, interesting. Are you on windows?

Terrific. Thanks!

1 Like

Wow, interesting. Are you on windows?

No, macOS.

Hey! Any news to this? Or am I doing something wrong.
Cheers,
Chrome

Hey, check out this comment: California Coast Theme

It seems that specifying a font in the theme settings helped bwydoogh

Okay, thanks.

But sadly I simply do not know how to do this…

Can you elaborate this to me please?

Thank you very much

Yeah, so first you’ll need to ensure that the California Coast Theme plugin is installed in Community plugins. Then you enter the body font you want to use here:

Does this make sense?

Thank you very much! This made sense and is quite easy. I simply missed to install the plugin. Works fine now.

Did you intend to modify the existing theme to prevent this from happening?

Yeah, once I have time to dig into what exactly is going on here. I haven’t been able to reproduce the issue on my machine.

ABSOLUTELY Be-a-u-ti-ful!!! Thank you so much

1 Like

Could someone help me? I want to align slated plugin check boxes, but I can’t find the elements in css.

Thanks for developing this theme, it looks great!

One thing that I’d like to keep though is the amount whitespace and font size in the note. Would someone here please be able to let me know what settings to change how to make the note editing and viewing stay the same in terms of the amount of text being displayed vertically.?

2 Likes

Hi.

Once again, thanks for this great theme.

On macOS, however there is lag when using your theme especially when you scroll fast through large files. The reason (I did some debugging on your CSS) is the use of backdrop-filter. Dropping the use of that CSS property results in much better performance.

Perhaps something to have a look at (… and currently I am overriding your theme).

Keep up the good work.

Hey @Gnopps, support for adjusting white space is next on my list! Follow along here for update: Make space between headings configurable · Issue #41 · mgmeyers/obsidian-california-coast-theme · GitHub

2 Likes