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