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