shadcn_ui-theme
Installation
SKILL.md
Shadcn UI — Theme Data
Instructions
Theme and color scheme are defined by ShadThemeData and ShadColorScheme. Supported scheme names: blue, gray, green, neutral, orange, red, rose, slate, stone, violet, yellow, zinc.
Basic usage
import 'package:shadcn_ui/shadcn_ui.dart';
return ShadApp(
darkTheme: ShadThemeData(
brightness: Brightness.dark,
colorScheme: const ShadSlateColorScheme.dark(),
),
child: ...,
);