Skip Navigation

How should code-highlighting themes be handled?

I'm working on adding highlighting to code-blocks on lemmy using highlight.js, and am wondering exactly how to implement it. There are many code-themes that could be used Regarding which theme to use there are basically two different directions I could go:

  1. Each lemmy-theme would have to explicitly declare an hljs theme to use.
    • PROS:
      • easy to use, users automatically get an appropriate code-theme for every ui-theme.
      • simple to implement (already done)
    • CONS:
      • theme-makers need to pick an appropriate theme
      • no user customizability, limited number of themes
  2. Users can pick their preferred theme just like they pick a UI theme.
    • PROS:
      • Extreme customization, there are a buttload of themes, and users can pick any one!
    • CONS:
      • Users would need to pick an appropriate theme. It would use the "browser-default" (light/dark) until they pick one, and could look weird and be confusing until then
      • PITA to implement & requires back-end changes (wont see it for a while)

Let me know what you think, or if you have another solution.
I have solution #1 deployed on HeapOverflow.ml right now =]

Here is the PR for those interested: https://github.com/LemmyNet/lemmy-ui/pull/663

7 comments
  • I think a mix is best. I would start with 1. Declare a preferred highlighting theme for each Lemmy theme. Then users get a reasonable option by default. Later we can consider adding a user preference for overriding that option.

    • that's what I was originally thinking, but the solutions arn't really compatible with each-other. themers would import themes, but when we add the setting, you'd end up with two themes loaded, and there could be issues until themers remove the import =/

      It would be less headache for everyone to decide on a comprehensive solution from the beginning =/

      • I'm not familiar with how the code works but wouldn't this be something as simple as

         rust
            
        let codetheme = user_prefs.code_theme
          .or(user_prefs.ui_theme.recommended_code_theme)
          .unwrap_or(DEFAULT_CODE_THEME)
        
          
7 comments