mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-25 01:06:15 -04:00
feat(new-tool): diff of two json objects
This commit is contained in:
parent
61ece2387f
commit
362f2fa280
12 changed files with 751 additions and 134 deletions
|
@ -4,6 +4,7 @@ export const { themes: appThemes, useTheme: useAppTheme } = defineThemes({
|
|||
light: {
|
||||
text: {
|
||||
baseColor: 'rgb(51, 54, 57)',
|
||||
mutedColor: 'rgba(118, 124, 130)',
|
||||
},
|
||||
|
||||
primary: {
|
||||
|
@ -17,10 +18,23 @@ export const { themes: appThemes, useTheme: useAppTheme } = defineThemes({
|
|||
colorHover: '#f59e0b',
|
||||
colorPressed: '#f59e0b',
|
||||
},
|
||||
success: {
|
||||
color: '#18a058',
|
||||
colorHover: '#36ad6a',
|
||||
colorPressed: '#0c7a43',
|
||||
colorFaded: '#18a0582f',
|
||||
},
|
||||
error: {
|
||||
color: '#d03050',
|
||||
colorHover: '#de576d',
|
||||
colorPressed: '#ab1f3f',
|
||||
colorFaded: '#d030502a',
|
||||
},
|
||||
},
|
||||
dark: {
|
||||
text: {
|
||||
baseColor: 'rgba(255, 255, 255, 0.82)',
|
||||
mutedColor: 'rgba(255, 255, 255, 0.5)',
|
||||
},
|
||||
|
||||
primary: {
|
||||
|
@ -33,5 +47,17 @@ export const { themes: appThemes, useTheme: useAppTheme } = defineThemes({
|
|||
colorHover: '#f59e0b',
|
||||
colorPressed: '#f59e0b',
|
||||
},
|
||||
success: {
|
||||
color: '#18a058',
|
||||
colorHover: '#36ad6a',
|
||||
colorPressed: '#0c7a43',
|
||||
colorFaded: '#18a0582f',
|
||||
},
|
||||
error: {
|
||||
color: '#e88080',
|
||||
colorHover: '#e98b8b',
|
||||
colorPressed: '#e57272',
|
||||
colorFaded: '#e8808029',
|
||||
},
|
||||
},
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue