# Theme Environment Sometimes you may need some component to access some values at specific theme. You can use `theme-environment`. Config Consumer & Element have access to theme environment. ```html
Dark Theme Light Theme
``` ```js export default { data () { return { theme: 'light', env: { dark: 'NaCl', light: 'Ionic Compound' } } } } ``` ```css .n-button { margin: 0 8px 12px 0; } ```