aitube2 / lib /theme /colors.dart
jbilcke-hf's picture
jbilcke-hf HF Staff
initial commit log 🪵🦫
5acd9c3
raw
history blame contribute delete
403 Bytes
// lib/theme/Colors.dart
import 'package:flutter/material.dart';
class AiTubeColors {
static const background = Color(0xFF0F0F0F);
static const surface = Color(0xFF242424);
static const surfaceVariant = Color(0xFF2D2D2D);
static const primary = Colors.red;
static const onBackground = Colors.white;
static const onSurface = Colors.white;
static const onSurfaceVariant = Colors.white70;
}