Update ripple colors
parent
7edc4b5fef
commit
9927e1b4c3
|
@ -1,10 +1,10 @@
|
||||||
export default {
|
export default {
|
||||||
colorScheme: {
|
colorScheme: {
|
||||||
light: {
|
light: {
|
||||||
background: 'rgba(0,0,0,0.5)'
|
background: 'rgba(0,0,0,0.1)'
|
||||||
},
|
},
|
||||||
dark: {
|
dark: {
|
||||||
background: 'rgba(255,255,255,0.5)'
|
background: 'rgba(255,255,255,0.3)'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
export default {
|
export default {
|
||||||
colorScheme: {
|
colorScheme: {
|
||||||
light: {
|
light: {
|
||||||
background: 'rgba(0,0,0,0.5)'
|
background: 'rgba(0,0,0,0.1)'
|
||||||
},
|
},
|
||||||
dark: {
|
dark: {
|
||||||
background: 'rgba(255,255,255,0.5)'
|
background: 'rgba(255,255,255,0.3)'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
export default {
|
export default {
|
||||||
colorScheme: {
|
colorScheme: {
|
||||||
light: {
|
light: {
|
||||||
background: 'rgba(0,0,0,0.5)'
|
background: 'rgba(0,0,0,0.1)'
|
||||||
},
|
},
|
||||||
dark: {
|
dark: {
|
||||||
background: 'rgba(255,255,255,0.5)'
|
background: 'rgba(255,255,255,0.4)'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
|
@ -5,7 +5,7 @@ import { reactive } from 'vue';
|
||||||
const $appState = {
|
const $appState = {
|
||||||
install: (Vue, options) => {
|
install: (Vue, options) => {
|
||||||
Vue.config.globalProperties.$appState = reactive({
|
Vue.config.globalProperties.$appState = reactive({
|
||||||
preset: 'Nora',
|
preset: 'Aura',
|
||||||
darkTheme: false,
|
darkTheme: false,
|
||||||
codeSandbox: false,
|
codeSandbox: false,
|
||||||
sourceType: 'options-api',
|
sourceType: 'options-api',
|
||||||
|
@ -19,6 +19,7 @@ const $appState = {
|
||||||
export default defineNuxtPlugin((nuxtApp) => {
|
export default defineNuxtPlugin((nuxtApp) => {
|
||||||
nuxtApp.vueApp.use($appState);
|
nuxtApp.vueApp.use($appState);
|
||||||
nuxtApp.vueApp.use(PrimeVue, {
|
nuxtApp.vueApp.use(PrimeVue, {
|
||||||
|
|
||||||
theme: Noir
|
theme: Noir
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
import { definePreset } from 'primevue/themes';
|
import { definePreset } from 'primevue/themes';
|
||||||
import Nora from 'primevue/themes/nora';
|
import Aura from 'primevue/themes/aura';
|
||||||
|
|
||||||
const Noir = definePreset(Nora, {
|
const Noir = definePreset(Aura, {
|
||||||
semantic: {
|
semantic: {
|
||||||
primary: {
|
primary: {
|
||||||
50: '{zinc.50}',
|
50: '{zinc.50}',
|
||||||
|
|
Loading…
Reference in New Issue