Skip to content

Commit

Permalink
chore: improve icons
Browse files Browse the repository at this point in the history
  • Loading branch information
benjamincanac committed Oct 11, 2023
1 parent 181dffb commit cf7dbaf
Showing 1 changed file with 56 additions and 6 deletions.
62 changes: 56 additions & 6 deletions app.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,11 @@ export default defineAppConfig({
},
commandPalette: {
default: {
icon: 'i-ph-magnifying-glass',
icon: 'i-ph-magnifying-glass-duotone',
loadingIcon: 'i-ph-spinner',
selectedIcon: 'i-ph-check',
emptyState: {
icon: 'i-ph-magnifying-glass'
icon: 'i-ph-magnifying-glass-duotone'
}
}
},
Expand Down Expand Up @@ -93,6 +93,13 @@ export default defineAppConfig({
height: '5rem'
}
},
aside: {
links: {
externalIcon: {
name: 'i-ph-arrow-up-right'
}
}
},
header: {
wrapper: 'lg:mb-0 lg:border-0',
links: {
Expand All @@ -107,7 +114,10 @@ export default defineAppConfig({
popover: {
links: {
active: 'dark:bg-gray-950/50',
inactive: 'dark:hover:bg-gray-950/50'
inactive: 'dark:hover:bg-gray-950/50',
externalIcon: {
name: 'i-ph-arrow-up-right'
}
}
},
button: {
Expand All @@ -118,6 +128,11 @@ export default defineAppConfig({
}
},
footer: {
columns: {
externalIcon: {
name: 'i-ph-arrow-up-right'
}
},
links: {
externalIcon: {
name: 'i-ph-arrow-up-right'
Expand Down Expand Up @@ -173,9 +188,11 @@ export default defineAppConfig({
}
}
},
prose: {
heading: {
icon: 'i-ph-hash-duotone'
content: {
callout: {
externalIcon: {
name: 'i-ph-arrow-up-right'
}
},
collapsible: {
button: {
Expand All @@ -184,6 +201,39 @@ export default defineAppConfig({
base: 'w-3 h-3'
}
}
},
prose: {
h1: {
icon: {
name: 'i-ph-hash-duotone'
}
},
h2: {
icon: {
name: 'i-ph-hash-duotone'
}
},
h3: {
icon: {
name: 'i-ph-hash-duotone'
}
},
h4: {
icon: {
name: 'i-ph-hash-duotone'
}
},
code: {
button: {
icon: {
copy: 'i-ph-copy-duotone',
copied: 'i-ph-copy-duotone'
}
},
icon: {
terminal: 'i-ph-terminal-window-duotone'
}
}
}
}
}
Expand Down

0 comments on commit cf7dbaf

Please sign in to comment.