About theme style #2450
Unanswered
Quinlivanner
asked this question in
PrimeVue Templates
Replies: 2 comments
-
here is my theme now. |
Beta Was this translation helpful? Give feedback.
0 replies
-
Hello @Quinlivanner. The default preset in Prime Vue Website is Aura, so you'll need to set this preset in your main.js file. The code shared is from PrimeVue Configuration import PrimeVue from 'primevue/config';
import Aura from '@primevue/themes/aura';
const app = createApp(App);
app.use(PrimeVue, {
// Default theme configuration
theme: {
preset: Aura,
options: {
prefix: 'p',
darkModeSelector: 'system',
cssLayer: false
}
}
}); |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I want to use this style from primevue official website in my project, but I tried for a long time and didn't find the right style, can anyone tell me what theme is this?
Beta Was this translation helpful? Give feedback.
All reactions