Theme Scss logo

Theme Scss

Community
ahmed-lakosha
theme-scss

Complete SCSS variable reference for Odoo themes. Covers all three core variable systems: $o-theme-font-configs (Google Fonts), $o-color-palettes (color system with 5 semantic colors), and $o-website-values-palettes (115+ keys for typography, buttons, inputs, headers, footers, layout). Includes SCSS load order rules and color derivation. <example> Context: User asks about SCSS variables user: "What SCSS variables can I configure in my Odoo theme?" assistant: "I will use the theme-scss skill to show the complete variable reference." <commentary>Variable reference lookup.</commentary> </example> <example> Context: User wants to configure colors user: "How do I set up o-color-1 through o-color-5?" assistant: "I will explain the semantic color system and palette configuration." <commentary>Color palette configuration.</commentary> </example> <example> Context: User gets undefined variable error user: "I get 'Undefined variable $o-color-palettes' in my theme" assistant: "This is a SCSS load order issue. Theme files load BEFORE core variables." <commentary>SCSS debugging - load order issue.</commentary> </example> <example> Context: User wants to configure fonts user: "How do I add Google Fonts to my Odoo theme?" assistant: "Use $o-theme-font-configs with the font query parameter, not the full URL." <commentary>Font configuration.</commentary> </example>

Overview

Publisherahmed-lakosha
Repositoryodoo-plugins
Skill nametheme-scss
Stars
74
Forks
33
Bundled files
Instructions only
LicenseMIT
Links
  • Markdown instructions

    A SKILL.md file the model loads on demand, so it only costs tokens when a request actually matches.

  • Works with any LLM

    AI skills are plain Markdown, not provider-specific code, so this works with GPT, Claude, Gemini, Grok, or a local model.

  • Self-contained

    Everything the model needs lives in the instructions — no extra files to sync.

  • Open source

    Published by ahmed-lakosha on GitHub. Read the source before you install it.

Installation

Install the Theme Scss AI skill in TypingMind to use it with any LLM, or drop it into another agent that reads SKILL.md.

1

Install in TypingMind

TypingMind installs a skill straight from its GitHub folder — it reads SKILL.md, bundles the resource files, and stores the result locally.

  1. Open the app and go to Plugins → Skills.
  2. Choose "Install from GitHub".
  3. Paste the skill folder URL below and confirm.
  4. Enable the skill in any chat where you want it available.
Plugins → Skills → Add skill → From GitHub URL, then paste the folder URL and press Continue.
2

Install in another agent

Any agent that reads the Agent Skills format can use this skill — copy the folder into that agent's skills directory.

Claude Code — .claude/skills
git clone --depth 1 https://github.com/ahmed-lakosha/odoo-plugins.git /tmp/odoo-plugins
mkdir -p .claude/skills
cp -r /tmp/odoo-plugins/odoo-frontend-plugin/skills/theme-scss .claude/skills/theme-scss
Restart Claude Code after copying so it picks up the new skill.

Use it in TypingMind

Enable Theme Scss in any TypingMind chat and the model takes it from there. Its name and description sit in the system prompt, and the moment a request matches, the model loads the full instructions itself — you never invoke it by hand, and it costs no tokens until it is actually used.

The model loads Theme Scss on its own as soon as a request matches it.

Works with any AI model

AI skills are plain Markdown instructions rather than provider-specific code, so Theme Scss is not tied to the model it was written for. Install it once in TypingMind and use it with GPT-5, Claude, Gemini, Grok, DeepSeek, Mistral, Llama, or a local model you run yourself — all on your own API keys.

  • Loaded only when it is needed

    The system prompt carries just the name and description. The instructions are fetched on the first matching request, so an idle skill costs nothing.

  • Switch models mid-chat

    Because the skill is instructions rather than code, changing model does not break it — the next model reads the same SKILL.md.

Skill instructions

This is the SKILL.md content the model loads. Read it before installing — a skill is instructions your model will follow.

Odoo Theme SCSS Variable Reference

Critical Load Order Rule

Theme SCSS files load BEFORE core Odoo variables are defined:

1. YOUR theme's primary_variables.scss (via prepend)  ← FIRST
2. Odoo core primary_variables.scss                    ← SECOND

CONSEQUENCE: CANNOT use map-merge() with core variables!

WRONG: $o-color-palettes: map-merge($o-color-palettes, (...)); → Undefined variable error RIGHT: Define standalone variables without map-merge


1. $o-theme-font-configs — Google Fonts

scss
$o-theme-font-configs: (
    '<Font Name>': (
        'family': (<CSS font-family list>),     // Required
        'url': '<Google Fonts query param>',     // Required — NOT the full URL!
        'properties': (                          // Optional: per-context overrides
            '<font-alias>': ( '<key>': <value> ),
        ),
    ),
);

CRITICAL: The 'url' key contains only the query parameter:

scss
// CORRECT
'url': 'Poppins:300,300i,400,400i,600,600i,700,700i'

// WRONG — do NOT include full URL
'url': 'https://fonts.googleapis.com/css?family=Poppins:300,400,700'

Font Weight Format

scss
'url': 'Poppins:300,300i,400,400i,600,600i,700,700i'
//      Light  Light-i  Regular Regular-i SemiBold ...
// Number alone = normal, Number + 'i' = italic

Multi-word Font Names

scss
'url': 'Open+Sans:300,300i,400,400i,700,700i'
'url': 'IBM+Plex+Sans+Arabic:100,200,300,400,500,600,700'

Font Aliases (for 'properties')

AliasMaps ToUsage
'base''font'Body text
'headings''headings-font'All headings
'navbar''navbar-font'Navigation
'buttons''buttons-font'Buttons

Complete Example

scss
$o-theme-font-configs: (
    'Poppins': (
        'family': ('Poppins', sans-serif),
        'url': 'Poppins:300,300i,400,400i,500,500i,600,600i,700,700i',
        'properties': (
            'base': ( 'font-size-base': (15 / 16) * 1rem ),
        ),
    ),
    'Playfair Display': (
        'family': ('Playfair Display', serif),
        'url': 'Playfair+Display:400,400i,700,700i',
    ),
);

Arabic/RTL Fonts

scss
$o-theme-font-configs: (
    'IBM Plex Sans Arabic': (
        'family': ('IBM Plex Sans Arabic', sans-serif),
        'url': 'IBM+Plex+Sans+Arabic:100,200,300,400,500,600,700',
    ),
    'Cairo': (
        'family': ('Cairo', sans-serif),
        'url': 'Cairo:200,300,400,500,600,700,800,900',
    ),
);

2. $o-color-palettes — Color System

The Five Semantic Colors

ColorMeaningTypical Usage
o-color-1Primary/AccentBrand color, buttons, links
o-color-2SecondaryAccent, secondary buttons
o-color-3Light BackgroundSection backgrounds, cards
o-color-4White/LightestContent background (#FFFFFF)
o-color-5Dark/TextHeadings, footer, dark sections

Color Combinations (o_cc1 - o_cc5)

ClassBackgroundUsage
o_cc1o-color-4 (White)Main content
o_cc2o-color-3 (Light)Alternate sections
o_cc3o-color-2 (Secondary)Accent sections
o_cc4o-color-1 (Primary)CTA sections
o_cc5o-color-5 (Dark)Footer, dark

Palette Structure

scss
$o-color-palettes: map-merge($o-color-palettes, (
    'my-palette': (
        'o-color-1': #09294F,
        'o-color-2': #FFA807,
        'o-color-3': #F6F4F0,
        'o-color-4': #FFFFFF,
        'o-color-5': #1B212C,

        // Component assignments
        'menu': 1,
        'footer': 5,
        'copyright': 5,

        // Color combination overrides
        'o-cc5-link': 'o-color-4',
        'o-cc5-btn-primary': 'o-color-2',
    ),
));

NOTE: map-merge with $o-color-palettes works ONLY in non-theme modules. In themes (which use prepend), use $o-website-values-palettes with 'color-palettes-name' instead.

HTML Usage

xml
<section class="o_cc o_cc1 pt32 pb32"><!-- White bg --></section>
<section class="o_cc o_cc2 pt32 pb32"><!-- Light bg --></section>
<section class="o_cc o_cc5 pt32 pb32"><!-- Dark bg --></section>

Color Derivation (when only 2 colors are available)

o-color-3 = lighten(primary, 45%)
o-color-4 = #FFFFFF
o-color-5 = darken(primary, 40%) or #191A19

3. $o-website-values-palettes — Master Configuration (115+ Keys)

Quick Reference

CategoryCountDescription
Typography & Fonts13Font family configuration
Font Sizes13Base and heading sizes
Line Heights11Text spacing
Margins22Heading and paragraph margins
Buttons17Button styling
Inputs12Form field styling
Header13Header/navigation config
Footer3Footer config
Links1Underline behavior
Layout3Page layout
Colors & Gradients5Palette and gradients
Google Fonts2Additional font loading

3.1 Typography & Fonts

KeyDescription
'font'Base font for entire site
'headings-font'Font for H1-H6
'navbar-font'Navigation menu font
'buttons-font'Button text font
'h2-font' to 'h6-font'Individual heading fonts
'display-1-font' to 'display-4-font'Display text fonts

3.2 Font Sizes

KeyDefaultDescription
'font-size-base'1remBase font size (16px)
'small-font-size'0.875remSmall text (14px)
'h1-font-size' to 'h6-font-size'CalculatedHeading sizes
'display-1-font-size' to 'display-6-font-size'5rem-2.5remDisplay sizes

3.3 Line Heights & Margins

KeyDefaultDescription
'body-line-height'1.5Body text
'headings-line-height'1.2All headings
'h2-line-height' to 'h6-line-height'InheritsIndividual
'paragraph-margin-top'0Paragraph top
'paragraph-margin-bottom'16pxParagraph bottom
'headings-margin-top' / 'headings-margin-bottom'0 / 0.5remHeadings

3.4 Buttons (17 Keys)

KeyDescription
'btn-padding-y' / 'btn-padding-x'Default padding
'btn-font-size'Font size
'btn-padding-y-sm' / 'btn-padding-x-sm'Small button
'btn-padding-y-lg' / 'btn-padding-x-lg'Large button
'btn-border-width'Border thickness
'btn-border-radius' / -sm / -lgCorner radius
'btn-primary-outline'Primary as outline (bool)
'btn-secondary-outline'Secondary as outline (bool)
'btn-primary-flat' / 'btn-secondary-flat'Flat style (bool)
'btn-ripple'Material ripple effect (bool)

3.5 Inputs (12 Keys)

KeyDescription
'input-padding-y' / 'input-padding-x'Input padding
'input-font-size'Input font size
'input-border-width'Border thickness
'input-border-radius' / -sm / -lgCorner radius

3.6 Header & Navigation (13 Keys)

KeyValuesDescription
'header-template''default' / 'hamburger' / 'vertical' / 'sidebar'Header layout
'header-links-style''default' / 'fill' / 'outline' / 'pills' / 'block' / 'border-bottom'Link style
'header-font-size'CSS lengthHeader text size
'logo-height'CSS lengthLogo height
'fixed-logo-height'CSS lengthLogo when fixed
'hamburger-position''left' / 'center' / 'right'Desktop position
'hamburger-position-mobile''left' / 'center' / 'right'Mobile position

3.7 Footer (3 Keys)

KeyValuesDescription
'footer-template''default' / 'centered' / 'minimalist' / 'links' / 'descriptive'Layout
'footer-effect'null / 'slideout_slide_hover' / 'slideout_shadow'Animation
'footer-scrolltop'booleanScroll-to-top button

3.8 Links & Layout

KeyValuesDescription
'link-underline''never' / 'hover' / 'always'Underline behavior
'layout''full' / 'boxed'Page layout
'body-image'URLBackground image

3.9 Colors & Gradients

KeyDescription
'color-palettes-name'Active color palette name
'menu-gradient'Menu background gradient
'footer-gradient'Footer background gradient

Complete Example — Modern Corporate Theme

scss
$o-website-values-palettes: (
    (
        'color-palettes-name': 'my-corporate-palette',

        // Typography
        'font': 'Inter',
        'headings-font': 'Inter',
        'navbar-font': 'Inter',
        'buttons-font': 'Inter',
        'font-size-base': 1rem,
        'headings-line-height': 1.3,
        'body-line-height': 1.6,

        // Header
        'header-template': 'default',
        'header-links-style': 'default',
        'logo-height': 48px,
        'fixed-logo-height': 36px,

        // Buttons
        'btn-padding-y': 0.75rem,
        'btn-padding-x': 1.5rem,
        'btn-border-radius': 8px,
        'btn-ripple': true,

        // Inputs
        'input-padding-y': 0.75rem,
        'input-border-radius': 8px,

        // Footer
        'footer-template': 'default',
        'footer-scrolltop': true,

        // Links
        'link-underline': 'hover',
        'layout': 'full',
    ),
);

Typography Multipliers

scss
$o-theme-h1-font-size-multiplier: (64 / 16); // 64px → 4.0
$o-theme-h2-font-size-multiplier: (48 / 16); // 48px → 3.0
$o-theme-h3-font-size-multiplier: (32 / 16); // 32px → 2.0
$o-theme-h4-font-size-multiplier: (24 / 16); // 24px → 1.5
$o-theme-h5-font-size-multiplier: (20 / 16); // 20px → 1.25
$o-theme-h6-font-size-multiplier: (16 / 16); // 16px → 1.0 (FIXED!)

Frequently asked questions

What does the Theme Scss AI skill do?

Complete SCSS variable reference for Odoo themes. Covers all three core variable systems: $o-theme-font-configs (Google Fonts), $o-color-palettes (color system with 5 semantic colors), and $o-website-values-palettes (115+ keys for typography, buttons, inputs, headers, footers, layout). Includes SCSS load order rules and color derivation. <example> Context: User asks about SCSS variables user: "What SCSS variables can I configure in my Odoo theme?" assistant: "I will use the theme-scss skill to show the complete variable reference." <commentary>Variable reference lookup.</commentary> </examp...

Why use Theme Scss on TypingMind?

Because you install it once and use it with any model. Theme Scss is plain Markdown rather than provider-specific code, so the same skill runs on GPT-5, Claude, Gemini, Grok, or a local model — and you can switch model mid-chat without it breaking. TypingMind runs on your own API keys, so you pay providers directly instead of a per-seat subscription, and your skills and chats stay in your own storage.

How do I install Theme Scss in TypingMind?

Open Plugins → Skills → Install from GitHub in TypingMind and paste https://github.com/ahmed-lakosha/odoo-plugins/tree/master/odoo-frontend-plugin/skills/theme-scss. TypingMind reads its SKILL.md and installs it as a skill you can enable per chat.

Which AI models can use Theme Scss?

Any model you connect in TypingMind. AI skills are plain Markdown instructions rather than provider-specific code, so GPT, Claude, Gemini, Grok, and local models can all load this skill when a request matches it.

How many AI models can I use with Theme Scss?

As many as you like. As long as a model supports skills, you can use Theme Scss with it — GPT, Claude, Gemini, Grok, DeepSeek, Mistral, Llama and more — all on TypingMind with your own API keys.

Is the Theme Scss AI skill free?

Yes. It is published on GitHub by ahmed-lakosha under the MIT license. You only pay your own AI provider for the tokens you use.

What are AI skills?

An AI skill is a reusable instruction bundle that teaches an AI model how to do one specific task. It follows the open Agent Skills format: a SKILL.md file with a name and description, plus any scripts, templates or reference files the model may need. The model reads the instructions only when your request matches the skill, so an installed skill costs nothing until it is used.

How are AI skills different from plugins or MCP servers?

A plugin or MCP server gives a model new tools to call — code that runs somewhere and returns a result. An AI skill gives the model knowledge and process instead: how to approach a task, which steps to follow, what good output looks like. Skills are plain Markdown, so they need no server, no API key and no runtime, and they work with any model.

View all

Set up your own AI workspace now

Get notified about new features and future giveaways by subscribing to our newsletter 👇