-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
220 additions
and
152 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
'@cobalt-ui/plugin-css': minor | ||
--- | ||
|
||
Add colorFormat option |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
'@cobalt-ui/plugin-sass': minor | ||
--- | ||
|
||
Add colorFormat option |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
{ | ||
"color": { | ||
"$type": "color", | ||
"blue": { | ||
"$value": "#218bff" | ||
} | ||
}, | ||
"border": { | ||
"heavy": { | ||
"$type": "border", | ||
"$value": {"color": "#363636", "width": "3px", "style": "solid"} | ||
} | ||
}, | ||
"shadow": { | ||
"simple": { | ||
"$type": "shadow", | ||
"$value": {"offsetX": 0, "offsetY": "4px", "blur": "8px", "spread": 0, "color": "rgb(0, 0, 0, 0.15)"} | ||
} | ||
}, | ||
"gradient": { | ||
"$type": "gradient", | ||
"$value": [ | ||
{"color": "#218bff", "position": 0}, | ||
{"color": "#e85aad", "position": 1} | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
/** | ||
* Design Tokens | ||
* Autogenerated from tokens.json. | ||
* DO NOT EDIT! | ||
*/ | ||
|
||
:root { | ||
--border-heavy: 3px solid oklch(0.332889981838499 0 0); | ||
--color-blue: oklch(0.6417644680341144 0.19507618434109797 254.9761894488772); | ||
--gradient: oklch(0.6417644680341144 0.19507618434109797 254.9761894488772) 0%, oklch(0.6758651948287796 0.19530567236823002 347.4630536462303) 100%; | ||
--shadow-simple: 0 4px 8px 0 oklch(0 0 0 / 0.14901960784313725); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.