tiny-vue_version0/examples/docs/newsrc/theme/themes.js

23 lines
531 B
JavaScript

export const themes = [
{
id: 'tiny-light-theme',
name: 'Light',
cnName: '浅色主题',
data: {
'ti-base-color': '#ffffff',
'ti-button-bg-color': '#f0f0f0',
'ti-input-bg-color': '#f0f0f0'
}
},
{
id: 'tiny-dark-theme',
name: 'Dark',
cnName: '深色主题',
data: {
'ti-base-color': '#000000',
'ti-button-bg-color': '#333333',
'ti-input-bg-color': '#333333'
}
}
]