# Provide Theme Use `n-config-provider` to set the theme of all its descedant components. ```html Dark Light ``` ```js import { ref } from 'vue' import { darkTheme } from 'naive-ui' export default { setup () { return { darkTheme, theme: ref(null) } } } ```