20 lines
434 B
Dart
20 lines
434 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
|
|
class DanmakuTokens {
|
|
DanmakuTokens._();
|
|
|
|
|
|
static const Color accent = Colors.lightBlueAccent;
|
|
|
|
|
|
static const Color selectedFill = Colors.white12;
|
|
|
|
static const Color textPrimary = Colors.white;
|
|
static const Color textSecondary = Colors.white70;
|
|
static const Color textHint = Colors.white38;
|
|
static const Color textFaint = Colors.white30;
|
|
|
|
static const double radius = 6.0;
|
|
}
|