init
This commit is contained in:
commit
dc7af87493
132 changed files with 5659 additions and 0 deletions
65
lib/day.dart
Normal file
65
lib/day.dart
Normal file
|
|
@ -0,0 +1,65 @@
|
|||
import 'package:flutter/material.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)),
|
||||
'comment': TextStyle(color: Color(0xff969896)),
|
||||
'meta': TextStyle(color: Color(0xff969896)),
|
||||
'variable': TextStyle(color: Color(0xffdf5000)),
|
||||
'template-variable': TextStyle(color: Color(0xffdf5000)),
|
||||
'strong': TextStyle(color: Color(0xffdf5000)),
|
||||
'emphasis': TextStyle(color: Color(0xffdf5000)),
|
||||
'quote': TextStyle(color: Color(0xffdf5000)),
|
||||
'keyword': TextStyle(color: Color(0xffd73a49)),
|
||||
'selector-tag': TextStyle(color: Color(0xffd73a49)),
|
||||
'type': TextStyle(color: Color(0xffd73a49)),
|
||||
'literal': TextStyle(color: Color(0xff0086b3)),
|
||||
'symbol': TextStyle(color: Color(0xff0086b3)),
|
||||
'bullet': TextStyle(color: Color(0xff0086b3)),
|
||||
'attribute': TextStyle(color: Color(0xff0086b3)),
|
||||
'section': TextStyle(color: Color(0xff63a35c)),
|
||||
'name': TextStyle(color: Color(0xff63a35c)),
|
||||
'tag': TextStyle(color: Color(0xff333333)),
|
||||
'title': TextStyle(color: Color(0xff6f42c1)),
|
||||
'attr': TextStyle(color: Color(0xff6f42c1)),
|
||||
'selector-id': TextStyle(color: Color(0xff6f42c1)),
|
||||
'selector-class': TextStyle(color: Color(0xff6f42c1)),
|
||||
'selector-attr': TextStyle(color: Color(0xff6f42c1)),
|
||||
'selector-pseudo': TextStyle(color: Color(0xff6f42c1)),
|
||||
'addition':
|
||||
TextStyle(color: Color(0xff55a532), backgroundColor: Color(0xffeaffea)),
|
||||
'deletion':
|
||||
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),
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue