-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #269 from takenet/release/0.1.5
Release/0.1.5
- Loading branch information
Showing
4 changed files
with
21 additions
and
1 deletion.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import 'package:flutter/material.dart'; | ||
|
||
/// All Dark [Color] constants that are used by this Design System. | ||
abstract class DSDarkColors { | ||
static const Color surface0 = Color(0xFF424242); | ||
static const Color surface1 = Color(0xFF292929); | ||
static const Color surface3 = Color(0xFF141414); | ||
static const Color contentDefault = Color(0xFFF6F6F6); | ||
|
||
static const Color extendBlue = Color(0xFF1968F0); | ||
static const Color extendGreen = Color(0xFF35DE90); | ||
static const Color success = Color(0xFF355E4B); | ||
static const Color positive = Color(0xFF01562F); | ||
static const Color error = Color(0xFF7B3D3D); | ||
} |
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