File tree Expand file tree Collapse file tree 3 files changed +7
-1
lines changed
packages/components/theme/src Expand file tree Collapse file tree 3 files changed +7
-1
lines changed Original file line number Diff line number Diff line change 22
33$theme-type : (
44 " color" : (
5+ " highlight-primary-light" ,
56 " highlight-primary" ,
7+ " highlight-primary-dark" ,
68 " neutral-0" ,
79 " neutral-100" ,
810 " neutral-200" ,
Original file line number Diff line number Diff line change @@ -6,7 +6,9 @@ import type { Theme } from "../types";
66
77export const defaultTheme : Theme = {
88 color : {
9- "highlight-primary" : "#59BCC8" ,
9+ "highlight-primary-light" : "hsl(185deg 50% 85%)" ,
10+ "highlight-primary" : "hsl(185deg 50% 55%)" ,
11+ "highlight-primary-dark" : "hsl(185deg 50% 35%)" ,
1012 "neutral-0" : "#fff" ,
1113 "neutral-100" : "#edf2f7" ,
1214 "neutral-200" : "#DBDEEB" ,
Original file line number Diff line number Diff line change 11// Keep in sync with /Users/alopes/Desktop/dev-abel/react-ck/packages/components/theme/src/styles/_theme-type.scss
22export interface Theme {
33 color : {
4+ "highlight-primary-light" : string ;
45 "highlight-primary" : string ;
6+ "highlight-primary-dark" : string ;
57 "neutral-0" : string ;
68 "neutral-100" : string ;
79 "neutral-200" : string ;
You can’t perform that action at this time.
0 commit comments