loris/lib/themes/dracula.dart

26 lines
830 B
Dart
Raw Normal View History

2022-07-02 22:03:10 +00:00
import 'package:flutter/material.dart';
import 'themes.dart' as themes;
themes.CustomColors theme = themes.CustomColors(
2022-09-02 21:19:25 +00:00
"dracula",
2022-07-02 22:03:10 +00:00
const Color.fromARGB(
255,
98,
114,
164,
),
const ColorScheme(
brightness: Brightness.dark,
primary: Color.fromARGB(255, 255, 121, 198),
onPrimary: Color.fromARGB(255, 40, 42, 54),
secondary: Color.fromARGB(255, 80, 250, 123),
onSecondary: Color.fromARGB(255, 40, 42, 54),
error: Color.fromARGB(255, 255, 85, 85),
onError: Color.fromARGB(255, 40, 42, 54),
2022-08-12 19:30:58 +00:00
background: Color.fromARGB(255, 68, 71, 90),
2022-07-02 22:03:10 +00:00
onBackground: Color.fromARGB(255, 248, 248, 242),
2022-08-12 19:30:58 +00:00
surface: Color.fromARGB(255, 40, 42, 54),
2022-07-02 22:03:10 +00:00
onSurface: Color.fromARGB(255, 248, 248, 242),
2022-09-11 20:29:41 +00:00
),
const Color.fromARGB(255, 68, 71, 90));