aitube2 / lib /theme /colors.dart
jbilcke-hf's picture
jbilcke-hf HF Staff
working on the chat system
d7edecf
raw
history blame contribute delete
517 Bytes
// lib/theme/Colors.dart
import 'package:flutter/material.dart';
class AiTubeColors {
static const transparent = Color(0x00000000);
static const background = Color(0xFF171717);
static const surface = Color(0xFF272727);
static const surfaceVariant = Color(0xFF2B2B2B);
static const primary = Color.fromARGB(236, 214, 225, 4);
static const onBackground = Color.fromARGB(239, 255, 255, 255);
static const onSurface = Color.fromARGB(226, 255, 255, 255);
static const onSurfaceVariant = Colors.white70;
}