Token导航 LogoToken导航TokenDH.com
前端设计需要联网github未标认证来源可访问许可证需确认审计通过

theme-scss主题 CSS

Agent Skill

theme-scss 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

288

周安装

12

GitHub Stars

51

下载量

96
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:theme-scss(主题 CSS)
来源仓库:https://github.com/ahmed-lakosha/odoo-upgrade-skill
仓库路径:skills/theme-scss
安装命令:
npx skills add https://github.com/ahmed-lakosha/odoo-upgrade-skill --skill theme-scss
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/ahmed-lakosha/odoo-upgrade-skill --skill theme-scss

简介

theme-scss 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合整理项目状态与变更事项。

  • 适用于围绕仓库动态、代码审查和协作流程进行信息梳理。
  • 通过 npx skills add 命令从 GitHub 仓库安装,需结合原始 README 确认具体用法。
  • 安装前建议确认权限范围和维护状态,注意是否触发联网或文件读写操作。
  • theme-scss 属于前端设计类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

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

$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:

// 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

'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

'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

$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

$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

$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

<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

$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

$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!)

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

35.2%
按下载量换算34

Claude

30.36%
按下载量换算29

Cursor

17.64%
按下载量换算17

Gemini CLI

9.51%
按下载量换算9

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills