Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions brand-sample/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
!dist
4 changes: 2 additions & 2 deletions brand-sample/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ const config = {
light: {
urls: {
"default": "https://cdn.jsdelivr.net/npm/@openedx/paragon@$paragonVersion/dist/light.min.css",
"brandOverride": "https://cdn.jsdelivr.net/gh/openedx/sample-plugin@main/brand/dist/light.min.css"
"brandOverride": "https://cdn.jsdelivr.net/gh/openedx/sample-plugin@main/brand-sample/dist/light.min.css"
},
},
},
Expand All @@ -103,7 +103,7 @@ const siteConfig: SiteConfig = {
theme: {
variants: {
light: {
url: 'https://cdn.jsdelivr.net/gh/openedx/sample-plugin@main/brand/dist/light.min.css
url: 'https://cdn.jsdelivr.net/gh/openedx/sample-plugin@main/brand-sample/dist/light.min.css
},
},
},
Expand Down
3 changes: 3 additions & 0 deletions brand-sample/dist/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Compiled Theme

This directory contains the compiled theme stylesheets referenced by the [`jsdelivr`](https://www.jsdelivr.com/) example plugin.
31 changes: 31 additions & 0 deletions brand-sample/dist/light.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
/**
* Do not edit directly, this file was auto-generated.
* See <PARAGON_ROOT>/tokens/README.md for more details.
*/

:root {
--pgn-size-btn-focus-width: 2px;
--pgn-size-input-btn-focus-width: 1px;
--pgn-spacing-input-btn-padding-y: 0.5625rem;
--pgn-color-brand-100: #E9D4FFFF;
--pgn-color-brand-200: #DAB2FFFF;
--pgn-color-brand-300: #C27AFFFF;
--pgn-color-brand-400: #AD46FFFF;
--pgn-color-brand-600: #8200DBFF;
--pgn-color-brand-700: #6E11B0FF;
--pgn-color-brand-800: #59168BFF;
--pgn-color-brand-900: #3C0366FF;
--pgn-color-brand-base: #9810FAFF;
--pgn-spacing-form-input-padding-y-base: var(--pgn-spacing-input-btn-padding-y);
--pgn-color-brand-500: var(--pgn-color-brand-base); /** Brand color of level 500. */
--pgn-color-action-default-brand-100: #CFA1FFFF;
--pgn-color-action-default-brand-200: #C17FFFFF;
--pgn-color-action-default-brand-300: #AB47FFFF;
--pgn-color-action-default-brand-400: #9613FFFF;
--pgn-color-action-default-brand-600: #6400A8FF;
--pgn-color-action-default-brand-700: #510D81FF;
--pgn-color-action-default-brand-800: #3D0F5FFF;
--pgn-color-action-default-brand-900: #1F0234FF;
--pgn-color-action-default-brand-base: #7C04D3FF;
--pgn-color-action-default-brand-500: #7C04D3FF;
}
1 change: 1 addition & 0 deletions brand-sample/dist/light.css.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions brand-sample/dist/light.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 15 additions & 0 deletions brand-sample/dist/theme-urls.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"themeUrls": {
"defaults": {
"light": "light"
},
"variants": {
"light": {
"paths": {
"default": "./light.css",
"minified": "./light.min.css"
}
}
}
}
}
Loading