# Theme Environment ```html Dark Theme Light Theme ``` ```js export default { data () { return { theme: 'light', env: { dark: { backgroundColor: 'yellow', color: 'black' }, light: { backgroundColor: 'green', color: 'white' } } } } } ``` ```css .n-button { margin: 0 12px 8px 0; } .box { width: 100px; height: 100px; transition: all .3s cubic-bezier(.4, 0, .2, 1); } ```