Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
File size: 403 Bytes
5acd9c3 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
// 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;
}
|