You've already forked Atomcms-edit
3d5f94f9b9
- Add CSS variable support to dusk theme components for dynamic text colors - Fix low-contrast preset color combinations (cyberpunk, neon, magma, forest, obsidian, space) - Add text-shadow utility classes and apply to site header and backgrounds - Style logout buttons as proper buttons matching other button styles - Fix hardcoded text colors in atom theme components
7 lines
321 B
PHP
Executable File
7 lines
321 B
PHP
Executable File
@props(['classes' => '', 'type' => 'submit'])
|
|
|
|
<button type="{{ $type }}"
|
|
class="{{ $classes }} w-full rounded p-2 border-2 transition ease-in-out duration-200 font-semibold" style="background-color: var(--button-color); color: var(--button-text-color); border-color: var(--button-color);">
|
|
{{ $slot }}
|
|
</button>
|