هل يتم الرجوع إلى متغيرات لون موضوع Discourse في مكوِّن السمة المخصصة؟

Is it possible to access Discourse theme color variables in my own theme component?

I’m trying to use variables like --secondary in my CSS and it doesn’t seem to be working.

إعجابَين (2)

Yes, you should be able to access core’s native-css variables from a theme or theme component :+1:

e.g.

body {
  background-color: var(--secondary);
}

Could you share an example that’s not working?

5 إعجابات

Ah! I wasn’t using var()

إعجابَين (2)

I have trouble like this all the time. Sure, it’s “obvious” to use var, but only if you know and can remember!

i’m waiting for something to run, so out of curiosity I checked https://ask.discourse.com/ and asked “Is it possible to access Discourse theme color variables in my own theme component?” and lo! I got this:

  1. Available Color Variables:
    Discourse provides several predefined CSS custom properties for colors, such as:

    var(--primary)
    var(--secondary)
    var(--tertiary)
    var(--quaternary)
    var(--header_background)
    var(--header_primary)
    var(--highlight)
    var(--danger)
    var(--success)
    var(--love)
    
    
  2. Example Usage:
    You can use these variables in your CSS to ensure your theme adapts to different user-selected color schemes. For instance:

    body {
        background: var(--highlight);
    }
    
إعجاب واحد (1)

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.