Appearance
@obewds/tw-bg-palette-console
Welcome to the docs page for OBE:WDS's twBgPaletteConsole
component for Vue.js!
⚠️ Project Depreciated ⚠️
This project has been depreciated. Use VueVentus (via github or via npm), which is the result of this project, and has this functionality along with much more.
Installation
bash
npm install @obewds/tw-bg-palette-console --save-dev
Object Schema
The object returned when importing Tailwind CSS background console color palette has the following schema:
javascript
{
'console': {
colors: {
'default': '',
'error': '...',
'primary': '...',
'secondary': '...',
'success': '...',
},
},
}
Use Example
html
<script setup lang="ts">
import { twBgPaletteConsole } from '@obewds/tw-bg-palette-console'
const props = defineProps({
bgClasses: {
type: String,
default: twBgPaletteConsole.console.colors.primary,
},
})
</script>
<template>
<div :class="bgClasses">
{{ bgClasses }}
</div>
</template>
Uninstall
bash
npm uninstall @obewds/tw-bg-palette-console