more cleanup

This commit is contained in:
randogoth 2025-02-21 22:58:10 +02:00
parent 432048dc6a
commit f728cc6e66
5 changed files with 44 additions and 25 deletions

View file

@ -1,7 +1,4 @@
// GENERATED CODE - DO NOT MODIFY BY HAND
import 'package:flutter/material.dart';
import 'package:flutter/painting.dart';
const TextTheme dayText = TextTheme(
titleLarge: TextStyle(color: Color(0xff333333)),
@ -23,7 +20,7 @@ const TextTheme dayText = TextTheme(
const dayTheme = {
'root':
TextStyle(backgroundColor: Color(0xffF6F4F1), color: Color(0xff333333)),
TextStyle(backgroundColor: Color(0xffF6F4F1), color: Color(0xff333333)),
'comment': TextStyle(color: Color(0xff969896)),
'meta': TextStyle(color: Color(0xff969896)),
'variable': TextStyle(color: Color(0xffdf5000)),
@ -48,12 +45,21 @@ const dayTheme = {
'selector-attr': TextStyle(color: Color(0xff6f42c1)),
'selector-pseudo': TextStyle(color: Color(0xff6f42c1)),
'addition':
TextStyle(color: Color(0xff55a532), backgroundColor: Color(0xffeaffea)),
TextStyle(color: Color(0xff55a532), backgroundColor: Color(0xffeaffea)),
'deletion':
TextStyle(color: Color(0xffbd2c00), backgroundColor: Color(0xffffecec)),
TextStyle(color: Color(0xffbd2c00), backgroundColor: Color(0xffffecec)),
'number': TextStyle(color: Color(0xff005cc5)),
'string': TextStyle(color: Color(0xff032f62)),
'tag-hash': TextStyle(color: Colors.pinkAccent, fontStyle: FontStyle.italic, fontWeight: FontWeight.bold),
'tag-plus': TextStyle(color: Colors.cyan, fontStyle: FontStyle.italic, fontWeight: FontWeight.bold),
'tag-at': TextStyle(color: Colors.orange, fontStyle: FontStyle.italic, fontWeight: FontWeight.bold),
'tag-hash': TextStyle(
color: Colors.pinkAccent,
fontStyle: FontStyle.italic,
fontWeight: FontWeight.bold),
'tag-plus': TextStyle(
color: Colors.cyan,
fontStyle: FontStyle.italic,
fontWeight: FontWeight.bold),
'tag-at': TextStyle(
color: Colors.orange,
fontStyle: FontStyle.italic,
fontWeight: FontWeight.bold),
};