-
Notifications
You must be signed in to change notification settings - Fork 1
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
1 parent
6893595
commit 1702ee4
Showing
2 changed files
with
21 additions
and
25 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 |
---|---|---|
@@ -1,31 +1,27 @@ | ||
export default { | ||
primary: "#8FBCBB" /* Primary color */, | ||
"primary-focus": "#88C0D0" /* Primary color - focused */, | ||
"primary-content": | ||
"#D8DEE9" /* Foreground content color to use on primary color */, | ||
primary: '#8FBCBB' /* Primary color */, | ||
'primary-focus': '#88C0D0' /* Primary color - focused */, | ||
'primary-content': '#ECEFF4' /* Foreground content color to use on primary color */, | ||
|
||
secondary: "#81A1C1" /* Secondary color */, | ||
"secondary-focus": "#5E81AC" /* Secondary color - focused */, | ||
"secondary-content": | ||
"#D8DEE9" /* Foreground content color to use on secondary color */, | ||
secondary: '#81A1C1' /* Secondary color */, | ||
'secondary-focus': '#5E81AC' /* Secondary color - focused */, | ||
'secondary-content': '#ECEFF4' /* Foreground content color to use on secondary color */, | ||
|
||
accent: "#434C5E" /* Accent color */, | ||
"accent-focus": "#4C566A" /* Accent color - focused */, | ||
"accent-content": | ||
"#B48EAD" /* Foreground content color to use on accent color */, | ||
accent: '#434C5E' /* Accent color */, | ||
'accent-focus': '#4C566A' /* Accent color - focused */, | ||
'accent-content': '#B48EAD' /* Foreground content color to use on accent color */, | ||
|
||
neutral: "#2E3440" /* Neutral color */, | ||
"neutral-focus": "#3B4252" /* Neutral color - focused */, | ||
"neutral-content": | ||
"#D8DEE9" /* Foreground content color to use on neutral color */, | ||
neutral: '#2E3440' /* Neutral color */, | ||
'neutral-focus': '#3B4252' /* Neutral color - focused */, | ||
'neutral-content': '#ECEFF4' /* Foreground content color to use on neutral color */, | ||
|
||
"base-100": "#ECEFF4" /* Base color of page, used for blank backgrounds */, | ||
"base-200": "#E5E9F0" /* Base color, a little darker */, | ||
"base-300": "#D8DEE9" /* Base color, even more darker */, | ||
"base-content": "#2E3440" /* Foreground content color to use on base color */, | ||
'base-100': '#ECEFF4' /* Base color of page, used for blank backgrounds */, | ||
'base-200': '#E5E9F0' /* Base color, a little darker */, | ||
'base-300': '#D8DEE9' /* Base color, even more darker */, | ||
'base-content': '#2E3440' /* Foreground content color to use on base color */, | ||
|
||
info: "#EBCB8B" /* Info */, | ||
success: "#A3BE8C" /* Success */, | ||
warning: "#D08770" /* Warning */, | ||
error: "#BF616A" /* Error */, | ||
info: '#EBCB8B' /* Info */, | ||
success: '#A3BE8C' /* Success */, | ||
warning: '#D08770' /* Warning */, | ||
error: '#BF616A' /* Error */, | ||
} as const; |
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