Skip to content

Commit

Permalink
Merge pull request #269 from takenet/release/0.1.5
Browse files Browse the repository at this point in the history
Release/0.1.5
  • Loading branch information
mpamaro authored Aug 6, 2024
2 parents 1c7dfc4 + d1bcd13 commit e26b90b
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.1.5

- [DSDarkColors] Added new Dark theme colors.

## 0.1.4

- [DSInteractiveVoiceCallMessageBubble] Added new bubble to render the request call message.
Expand Down
1 change: 1 addition & 0 deletions lib/blip_ds.dart
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ export 'src/services/ds_file.service.dart' show DSFileService;
export 'src/services/ds_media_format.service.dart' show DSMediaFormatService;
export 'src/services/ds_toast.service.dart' show DSToastService;
export 'src/themes/colors/ds_colors.theme.dart' show DSColors;
export 'src/themes/colors/ds_dark_colors.theme.dart' show DSDarkColors;
export 'src/themes/colors/ds_linear_gradient.theme.dart' show DSLinearGradient;
export 'src/themes/icons/ds_icons.dart' show DSIcons;
export 'src/themes/system_overlay/ds_system_overlay.style.dart'
Expand Down
15 changes: 15 additions & 0 deletions lib/src/themes/colors/ds_dark_colors.theme.dart
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);
}
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: blip_ds
description: Blip Design System for Flutter.
version: 0.1.4
version: 0.1.5
homepage: https://github.com/takenet/blip-ds-flutter#readme
repository: https://github.com/takenet/blip-ds-flutter

Expand Down

0 comments on commit e26b90b

Please sign in to comment.