custom directory

This commit is contained in:
randogoth 2025-02-21 22:02:06 +02:00
parent 185a1c62e9
commit 7e82ddcbb7
12 changed files with 396 additions and 56 deletions

View file

@ -3,6 +3,24 @@
import 'package:flutter/material.dart';
import 'package:flutter/painting.dart';
const TextTheme dayText = TextTheme(
titleLarge: TextStyle(color: Color(0xff333333)),
bodyLarge: TextStyle(color: Color(0xff333333)),
bodyMedium: TextStyle(color: Color(0xff333333)),
bodySmall: TextStyle(color: Color(0xff333333)),
displayLarge: TextStyle(color: Color(0xff333333)),
displayMedium: TextStyle(color: Color(0xff333333)),
displaySmall: TextStyle(color: Color(0xff333333)),
headlineLarge: TextStyle(color: Color(0xff333333)),
headlineMedium: TextStyle(color: Color(0xff333333)),
headlineSmall: TextStyle(color: Color(0xff333333)),
labelLarge: TextStyle(color: Color(0xff333333)),
labelMedium: TextStyle(color: Color(0xff333333)),
labelSmall: TextStyle(color: Color(0xff333333)),
titleMedium: TextStyle(color: Color(0xff333333)),
titleSmall: TextStyle(color: Color(0xff333333)),
);
const dayTheme = {
'root':
TextStyle(backgroundColor: Color(0xffF6F4F1), color: Color(0xff333333)),

View file

@ -3,6 +3,24 @@
import 'package:flutter/material.dart';
import 'package:flutter/painting.dart';
const TextTheme nightText = TextTheme(
titleLarge: TextStyle(color: Color(0xffc5c8c6)),
bodyLarge: TextStyle(color: Color(0xffc5c8c6)),
bodyMedium: TextStyle(color: Color(0xffc5c8c6)),
bodySmall: TextStyle(color: Color(0xffc5c8c6)),
displayLarge: TextStyle(color: Color(0xffc5c8c6)),
displayMedium: TextStyle(color: Color(0xffc5c8c6)),
displaySmall: TextStyle(color: Color(0xffc5c8c6)),
headlineLarge: TextStyle(color: Color(0xffc5c8c6)),
headlineMedium: TextStyle(color: Color(0xffc5c8c6)),
headlineSmall: TextStyle(color: Color(0xffc5c8c6)),
labelLarge: TextStyle(color: Color(0xffc5c8c6)),
labelMedium: TextStyle(color: Color(0xffc5c8c6)),
labelSmall: TextStyle(color: Color(0xffc5c8c6)),
titleMedium: TextStyle(color: Color(0xffc5c8c6)),
titleSmall: TextStyle(color: Color(0xffc5c8c6)),
);
const nightTheme = {
'comment': TextStyle(color: Color(0xff969896)),
'quote': TextStyle(color: Color(0xff969896)),