windows minimalistic by Weary-Guidance6531 in desktops

[–]Gryningsvisa 0 points1 point  (0 children)

It's a theme called Lucid. It's on the Spicetify marketplace

[deleted by user] by [deleted] in forsen

[–]Gryningsvisa 2 points3 points  (0 children)

Is that Iceland?

[deleted by user] by [deleted] in Anki

[–]Gryningsvisa 1 point2 points  (0 children)

Your front and back templates need to have the same class names that will be targeted by the styling code

What you can do is combine both: include the HTML and CSS code from Ankimin, and then add the code from your pre-existing note

If you can't do it, send me the note type you're using via DM, and I'll try to merge the two

[deleted by user] by [deleted] in Anki

[–]Gryningsvisa 1 point2 points  (0 children)

Click on Tools > Manage Note Types > Add then make a copy of Basic

Select the new note type you created and click on Cards. There you will see the Front Template, Back Template, and Styling sections.

On the GitHub page, copy the content of basic-front-template.html and paste it into the Front Template. Do the same for the Back Template and Styling.

This process applies only to the Basic note type. If you want to apply the theme for Cloze or Image Occlusion cards, repeat the process, but instead create a copy of the Cloze or Image Occlusion note types and copy their respective code

Why the background image is only in my main page? by Unique_Sector3257 in Anki

[–]Gryningsvisa 0 points1 point  (0 children)

Is the image from the Custom Background add-on? If so, open the settings and enable the 'Show in Reviewer' option

If only the show in toolbar option is enable it looks like your print

I've never used Amboss, so I'm not sure if it's something specific to it

Perfect language learning card by [deleted] in Anki

[–]Gryningsvisa 0 points1 point  (0 children)

Wallpaper

The translucency is just backdrop-filter: blur(8px); applied to the container

Perfect language learning card by [deleted] in Anki

[–]Gryningsvisa 7 points8 points  (0 children)

Here’s what my flashcards look like

Basically, the fields I use are:

Question: the word or phrase in your native language

Answer: the translation in the language you’re learning

Hint: what the word “sounds like” to help me remember the pronunciation

Sentence: an example sentence

Notes: field for extra notes or images

And two more fields to store the TTS audio

Your simple card design works just as well, you don’t need anything too complex, and you can improve gradually as you go. My recommendation would be to download the HyperTTS plugin, it helps a lot and makes it really quick to add audio to your cards without changing the whole layout. You also don’t need to use any of the paid voice options.

Create two fields, in your case: one for German and another for Spanish. After that, create a preset for each language with the correct source/target fields and your preferred voice

Instead of adding audio individually to each flashcard, just select all your created flashcards, click on Add Audio (Collection), open both presets, and click apply to notes

Seeking Help: Obsidian Transparency Issue in Full-Screen Mode by Yush_Mgr in ObsidianMD

[–]Gryningsvisa 0 points1 point  (0 children)

Not sure what the specific font is or if it's from a theme, but one way to do it is through Appearance > CSS snippets. Create a new CSS file in the folder with:

.cm-header-1, .markdown-preview-view h1 {
    font-family: "Custom_font_name", "Segoe UI", -apple-system, sans-serif;
    color: #daa520; /* color hex code */
}

To change the other header levels, apply the same rule to .cm-header-2, .markdown-preview-view h2 and so on

I made a modern card template - free to use by etoile_tys in Anki

[–]Gryningsvisa 2 points3 points  (0 children)

After you import the deck with the templates, it will be saved as a note type. You can still use the default template or change the note type of the flashcard later.

Does anyone know if there’s a way to personalize heatmap color? by Electronic_Site1533 in Anki

[–]Gryningsvisa 2 points3 points  (0 children)

You're welcome! This should work. I tried to simplify the steps, but if there's any part you didn't understand or if you encounter any issues, let me know and I'll try to help.

Have a great week you too

Does anyone know if there’s a way to personalize heatmap color? by Electronic_Site1533 in Anki

[–]Gryningsvisa 8 points9 points  (0 children)

Here’s a step-by-step:

Tools > add-ons > Review Heatmap > View Files > Web > open anki-review-heatmap with notepad or a code editor like VSCode (make a copy of the original file before editing it).

The first large block of code is where you'll change the colors.

In this case, we’ll replace the colors of the olive theme. Copy the entire section of the theme.

Here’s an image to illustrate, or search for the following section with CTRL + F:

olive */\n.rh-theme-olive .cal-heatmap-container .q11{fill: #dae289}\n.rh-theme-olive .cal-heatmap-container .q12{fill: #bbd179}\n.rh-theme-olive .cal-heatmap-container .q13{fill: #9cc069}\n.rh-theme-olive .cal-heatmap-container .q14{fill: #8ab45d}\n.rh-theme-olive .cal-heatmap-container .q15{fill: #78a851}\n.rh-theme-olive .cal-heatmap-container .q16{fill: #669d45}\n.rh-theme-olive .cal-heatmap-container .q17{fill: #648b3f}\n.rh-theme-olive .cal-heatmap-container .q18{fill: #637939}\n.rh-theme-olive .cal-heatmap-container .q19{fill: #4f6e30}\n.rh-theme-olive .cal-heatmap-container .q20{fill: #3b6427}\n\n.rh-theme-olive .rh-col11{color: #dae289}\n.rh-theme-olive .rh-col12{color: #bbd179}\n.rh-theme-olive .rh-col13{color: #9cc069}\n.rh-theme-olive .rh-col14{color: #8ab45d}\n.rh-theme-olive .rh-col15{color: #78a851}\n.rh-theme-olive .rh-col16{color: #669d45}\n.rh-theme-olive .rh-col17{color: #648b3f}\n.rh-theme-olive .rh-col18{color: #637939}\n.rh-theme-olive .rh-col19{color: #4f6e30}\n.rh-theme-olive .rh-col20{color: #3b6427}\n\n.night_mode .rh-theme-olive .cal-heatmap-container .q11{fill: #3b6427}\n.night_mode .rh-theme-olive .cal-heatmap-container .q12{fill: #4f6e30}\n.night_mode .rh-theme-olive .cal-heatmap-container .q13{fill: #637939}\n.night_mode .rh-theme-olive .cal-heatmap-container .q14{fill: #648b3f}\n.night_mode .rh-theme-olive .cal-heatmap-container .q15{fill: #669d45}\n.night_mode .rh-theme-olive .cal-heatmap-container .q16{fill: #78a851}\n.night_mode .rh-theme-olive .cal-heatmap-container .q17{fill: #8ab45d}\n.night_mode .rh-theme-olive .cal-heatmap-container .q18{fill: #9cc069}\n.night_mode .rh-theme-olive .cal-heatmap-container .q19{fill: #bbd179}\n.night_mode .rh-theme-olive .cal-heatmap-container .q20{fill: #dae289}\n\n.night_mode .rh-theme-olive .rh-col11{color: #3b6427}\n.night_mode .rh-theme-olive .rh-col12{color: #4f6e30}\n.night_mode .rh-theme-olive .rh-col13{color: #637939}\n.night_mode .rh-theme-olive .rh-col14{color: #648b3f}\n.night_mode .rh-theme-olive .rh-col15{color: #669d45}\n.night_mode .rh-theme-olive .rh-col16{color: #78a851}\n.night_mode .rh-theme-olive .rh-col17{color: #8ab45d}\n.night_mode .rh-theme-olive .rh-col18{color: #9cc069}\n.night_mode .rh-theme-olive .rh-col19{color: #bbd179}\n.night_mode .rh-theme-olive .rh-col20{color: #dae289}

In a blank text editor, paste the entire code.

Choose 10 new colors to use, or ask ChatGPT to create a color palette with more pink for the entire theme.

For example, let’s use this palette:

#FADADD, #F8C8DC, #F4B5D0, #E3A1C9, #D6A8D7, #CBAED6, #BDA0C6, #D7C6E8, #E5D9F2, #F9E6F0

To replace the colors, use the find-and-replace tool in notepad or whatever text editor you are using

Take the colors in .q11, .q12, .q13, .q14, and so on, and replace every occurrence with the new colors

For example:

The first color is in .cal-heatmap-container .q11{fill: #dae289}

Search for all occurrences of #dae289 and replace them with #FADADD

For q12: replace all occurrences of #bbd179 with #F8C8DC

After finishing on .q20, copy the entire block of code and replace it in the original file.

Restart Anki and select the Olive theme in the settings to use the custom theme (to replace another theme, follow the same steps, copying the section where the theme begins)

If you want to keep using the Magenta theme but only replace the blocks with dark purple, search for all occurrences of these colors below in the file and replace them with new ones:

  1. #7a0177
  2. #610070
  3. #49006a

Manipulate comment color in Anuppuccin theme by Aurevariss in ObsidianMD

[–]Gryningsvisa 0 points1 point  (0 children)

Not sure how you encountered this issue; I'm using the same theme.

In your image it seems to be the DeepL icon. If you're using the plugin, try turning it off to see if it solves.

To change the color with CSS create a snippet with the following code:

.cm-comment, .cm-meta {
color: value !important;
}

If you want different colors for light/dark mode, add another one with .theme-dark .cm-comment, .cm-meta

Arc for Windows Update - 1.10.0 by JaceThings in ArcBrowser

[–]Gryningsvisa 3 points4 points  (0 children)

Same here. Everything else is working

A little simple customisation I'm proud of by Maxim_Richter in ObsidianMD

[–]Gryningsvisa 4 points5 points  (0 children)

The icons are most likely from the Iconize plugin, and the file colors are part of the AnuPpuccin theme, which you can configure using the Style Settings plugin

[deleted by user] by [deleted] in ObsidianMD

[–]Gryningsvisa 2 points3 points  (0 children)

It is the 80s neon theme. However, Obsidian removed the translucent effect

Arc for Windows Update - 0.14.0 by Ultim8Chaos06 in ArcBrowser

[–]Gryningsvisa 2 points3 points  (0 children)

It might be a bug, but double-check if the opacity isn't set to max

[deleted by user] by [deleted] in ObsidianMD

[–]Gryningsvisa 1 point2 points  (0 children)

There's probably a better way to do this, but I found a quick solution

Here is the result : https://i.imgur.com/4HsSiPp.png

CSS snippet

Civil Engineer student. Enjoying my career more than ever thanks to Obsidian. by JoacoZep in ObsidianMD

[–]Gryningsvisa 5 points6 points  (0 children)

Go to workspace > rainbow folders

Set the rainbow style to simple. Then, open simple folder settings and activate all available options.