import centered from '@storybook/addon-centered/vue'; export default { title: 'Design Systems', components: {}, decorators: [centered], }; // Buttons export const buttons = () => ({ components: {}, template: `
Normal Hover Focus Disabled
Primary
Secondary
Tertiary
Link
Dropdown and Action
` }); // Headers export const headers = () => ({ components: {}, template: `

Header One

Header Two

Header Three

Header Four

` }); // Text Colors export const textColor = () => ({ components: {}, template: `

Primary Text

Secondary Text

Interactive Text

Disable Text

` }); // All colors export const allColors = () => ({ components: {}, template: `

Dark: Sidebar & Block Light: Primary Text

Dark: Body Background Light: None

Dark: Input Fill Light: None

Dark: Borders & Buttons Light: None

Dark: Disabled Text Light: Secondary Text

Dark: Secondary Text Light: Disabled

Dark: None Light: Borders & Buttons

Dark: None Light: Input Fill

Dark: None Light: Sidebar and Block

Dark: Primary Text Light: Body Background

` });