Skip to content

Commit

Permalink
Change primary color to sky
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobtylerwalls committed Aug 9, 2024
1 parent 3e3a1ce commit 038f0c0
Show file tree
Hide file tree
Showing 8 changed files with 23 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,21 @@ const ControlledListsPreset = definePreset(Aura, {
950: '#2d3c4b', // matches arches sidebar
},
},
semantic: {
primary: {
50: '{sky.50}',
100: '{sky.100}',
200: '{sky.200}',
300: '{sky.300}',
400: '{sky.400}',
500: '{sky.500}',
600: '{sky.600}',
700: '{sky.700}',
800: '{sky.800}',
900: '{sky.900}',
950: '{sky.950}',
},
},
components: {
button: {
root: {
Expand All @@ -30,7 +45,7 @@ const ControlledListsPreset = definePreset(Aura, {
},
splitter: {
handle: {
background: "{surface.500}",
background: '{surface.500}',
},
},
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ const showError = (event?: FileUploadErrorEvent | FileUploadUploadEvent) => {
}
h4 {
color: var(--p-sky-950);
color: var(--p-primary-950);
margin-top: 0;
font-size: 1.33rem;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ label {
}
h4 {
color: var(--p-sky-950);
color: var(--p-primary-950);
margin-top: 0;
font-size: 1.33rem;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ const cancel = () => {
}
h4 {
color: var(--p-sky-950);
color: var(--p-primary-950);
margin-top: 0;
font-size: 1.33rem;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -410,7 +410,7 @@ const focusInput = () => {
}
h4 {
color: var(--p-sky-950);
color: var(--p-primary-950);
margin-top: 0;
font-size: 1.33rem;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ const heading = computed(() => {
.header {
display: flex;
align-items: center;
background: var(--p-sky-950);
background: var(--p-primary-950);
}
i {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ await fetchListsAndPopulateTree();
},
header: {
style: {
background: 'var(--p-sky-950)',
background: 'var(--p-primary-950)',
color: 'white',
borderRadius: '1rem',
marginBottom: '1rem',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ const expandNode = (node: TreeNode) => {
<style scoped>
.controls {
display: flex;
background: var(--p-sky-50);
background: var(--p-primary-50);
gap: 0.5rem;
padding: 0.5rem;
justify-content: space-between;
Expand Down

0 comments on commit 038f0c0

Please sign in to comment.