bearded-theme icon indicating copy to clipboard operation
bearded-theme copied to clipboard

Markdown Headers with different colors

Open Nova38 opened this issue 11 months ago • 0 comments

This issue is to propose setting headers colors in markdown documents based on the heading level. I have found that this can improve the readability of the documents as it allows for quickly being able to tell the sibling headings apart from the children headings.

I currently do this via manual adding textmaterules to change the colors in my settings, but I think that including this in the theme (and having it map to the color pallet of a given theme) would add to the already amazing theme.

Bellow is an example of applying these texmate rules in the vivid black theme:

image

image

"textMateRules": [
      {
        "scope": "heading.1.markdown entity.name.section.markdown, heading.1.markdown punctuation.definition.heading.markdown",
        "settings": {
          "foreground": "#9cecfb"
        }
      },
      {
        "scope": "heading.2.markdown entity.name.section.markdown, heading.2.markdown punctuation.definition.heading.markdown",
        "settings": {
          "foreground": "#83a4d4"
        }
      },
      {
        "scope": "heading.3.markdown entity.name.section.markdown, heading.3.markdown punctuation.definition.heading.markdown",
        "settings": {
          "foreground": "#009f78"
        }
      },
      {
        "scope": "heading.4.markdown entity.name.section.markdown, heading.4.markdown punctuation.definition.heading.markdown",
        "settings": {
          "foreground": "#d57300"
        }
      },
      {
        "scope": "heading.5.markdown entity.name.section.markdown, heading.5.markdown punctuation.definition.heading.markdown",
        "settings": {
          "foreground": "#ff4647"
        }
      },
      {
        "scope": "heading.6.markdown entity.name.section.markdown, heading.6.markdown punctuation.definition.heading.markdown",
        "settings": {
          "foreground": "#ff3b8d"
        }
      }
    ]

Nova38 avatar Mar 06 '24 23:03 Nova38