-
Notifications
You must be signed in to change notification settings - Fork 121
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'dev' of https://github.com/JangamRuthvik/taskwarrior-fl…
…utter into dev
- Loading branch information
Showing
41 changed files
with
2,251 additions
and
1,049 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,37 @@ | ||
// ignore_for_file: file_names | ||
|
||
import 'package:flutter/material.dart'; | ||
import 'package:taskwarrior/widgets/pallete.dart'; | ||
|
||
class Appcolors { | ||
class TaskWarriorColors { | ||
// Normal Colors | ||
static Color red = Colors.red; | ||
static Color green = Colors.green; | ||
static Color yellow = Colors.yellow; | ||
static Color white = Colors.white; | ||
static Color black = Colors.black; | ||
static Color grey = Colors.grey; | ||
static Color? lightGrey = Colors.grey[600]; | ||
static Color purple = Colors.purple; | ||
static Color borderColor = Colors.grey.shade300; | ||
static Color deepPurpleAccent = Colors.deepPurpleAccent; | ||
static Color deepPurple = Colors.deepPurple; | ||
|
||
// Dark Theme Color Palette | ||
static Color kprimaryBackgroundColor = Palette.kToDark.shade200; | ||
static Color ksecondaryBackgroundColor = | ||
const Color.fromARGB(255, 48, 46, 46); | ||
static Color kprimaryTextColor = Colors.white; | ||
static Color ksecondaryTextColor = Colors.white; | ||
static Color kprimaryDisabledTextColor = const Color(0xff595f6b); | ||
static Color kdialogBackGroundColor = const Color.fromARGB(255, 25, 25, 25); | ||
|
||
// Light Theme Color Palette | ||
static Color kLightPrimaryBackgroundColor = Colors.white; | ||
static Color kLightSecondaryBackgroundColor = | ||
const Color.fromARGB(255, 220, 216, 216); | ||
static Color kLightPrimaryTextColor = Colors.black; | ||
static Color kLightSecondaryTextColor = const Color.fromARGB(255, 48, 46, 46); | ||
static Color kLightPrimaryDisabledTextColor = const Color(0xffACACAB); | ||
static Color kLightDialogBackGroundColor = Colors.white; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
import 'package:flutter/material.dart'; | ||
|
||
class TaskWarriorFonts { | ||
// Font weights | ||
static const FontWeight thin = FontWeight.w100; | ||
static const FontWeight extraLight = FontWeight.w200; | ||
static const FontWeight light = FontWeight.w300; | ||
static const FontWeight regular = FontWeight.w400; | ||
static const FontWeight medium = FontWeight.w500; | ||
static const FontWeight semiBold = FontWeight.w600; | ||
static const FontWeight bold = FontWeight.w700; | ||
static const FontWeight extraBold = FontWeight.w800; | ||
static const FontWeight black = FontWeight.w900; | ||
|
||
// Font sizes | ||
static const double fontSizeSmall = 12.0; | ||
static const double fontSizeMedium = 16.0; | ||
static const double fontSizeLarge = 20.0; | ||
static const double fontSizeExtraLarge = 24.0; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.