Skip to content

Commit

Permalink
Update colors more accessible
Browse files Browse the repository at this point in the history
  • Loading branch information
HikaruEgashira committed Jan 27, 2024
1 parent 6893595 commit 1702ee4
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 25 deletions.
44 changes: 20 additions & 24 deletions index.ts
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;
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "daisy-theme-nord",
"version": "1.8.0",
"version": "1.9.0",
"description": "Nord theme for DaisyUI",
"main": "dist/index.js",
"module": "dist/index.mjs",
Expand Down

0 comments on commit 1702ee4

Please sign in to comment.