File size: 517 Bytes
5acd9c3
 
 
 
d7edecf
 
 
 
 
 
 
5acd9c3
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// 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;
}