Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Design Tokens Update 7.3.0 #708

Merged
merged 5 commits into from
Nov 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion optimus/lib/src/theme/optimus_tokens.dart
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import 'package:theme_tailor_annotation/theme_tailor_annotation.dart';
//

// Do not edit directly
// Generated on Wed, 23 Oct 2024 14:40:40 GMT
// Generated on Mon, 25 Nov 2024 17:43:45 GMT

part 'optimus_tokens.tailor.dart';

Expand Down Expand Up @@ -79,6 +79,7 @@ class OptimusTokens extends ThemeExtension<OptimusTokens>
required this.borderAlertInfo,
required this.borderAlertSuccess,
required this.borderAlertWarning,
required this.borderBrand,
required this.borderDisabled,
required this.borderInteractiveBoldActive,
required this.borderInteractiveBoldDefault,
Expand Down Expand Up @@ -542,6 +543,8 @@ class OptimusTokens extends ThemeExtension<OptimusTokens>
@override
final Color borderAlertWarning;
@override
final Color borderBrand;
@override
final Color borderDisabled;
@override
final Color borderInteractiveBoldActive;
Expand Down Expand Up @@ -1317,6 +1320,7 @@ class OptimusTokens extends ThemeExtension<OptimusTokens>
borderAlertInfo: DesignTokensLight.borderAlertInfo,
borderAlertSuccess: DesignTokensLight.borderAlertSuccess,
borderAlertWarning: DesignTokensLight.borderAlertWarning,
borderBrand: DesignTokensLight.borderBrand,
borderDisabled: DesignTokensLight.borderDisabled,
borderInteractiveBoldActive: DesignTokensLight.borderInteractiveBoldActive,
borderInteractiveBoldDefault:
Expand Down Expand Up @@ -1761,6 +1765,7 @@ class OptimusTokens extends ThemeExtension<OptimusTokens>
borderAlertInfo: DesignTokensDark.borderAlertInfo,
borderAlertSuccess: DesignTokensDark.borderAlertSuccess,
borderAlertWarning: DesignTokensDark.borderAlertWarning,
borderBrand: DesignTokensDark.borderBrand,
borderDisabled: DesignTokensDark.borderDisabled,
borderInteractiveBoldActive: DesignTokensDark.borderInteractiveBoldActive,
borderInteractiveBoldDefault: DesignTokensDark.borderInteractiveBoldDefault,
Expand Down
6 changes: 6 additions & 0 deletions optimus/lib/src/theme/optimus_tokens.tailor.dart

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions optimus/lib/src/tokens/tokens_dark.dart
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
//
// tokens_dark.dart
//

// ignore_for_file: avoid-duplicate-constant-values

// Do not edit directly
// Generated on Wed, 23 Oct 2024 14:40:39 GMT
// Generated on Mon, 25 Nov 2024 17:43:45 GMT

import 'package:flutter/widgets.dart';

Expand Down Expand Up @@ -77,6 +76,7 @@ abstract final class DesignTokensDark {
static const Color borderAlertInfo = Color(0xFF1F69D7);
static const Color borderAlertSuccess = Color(0xFF539F44);
static const Color borderAlertWarning = Color(0xFFBF8600);
static const Color borderBrand = Color(0xFFC4C4D5);
static const Color borderDisabled = Color(0xFF323243);
static const Color borderInteractiveBoldActive = Color(0xFFC4C4D5);
static const Color borderInteractiveBoldDefault = Color(0xFF8D8DAC);
Expand Down
6 changes: 3 additions & 3 deletions optimus/lib/src/tokens/tokens_light.dart
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
//
// tokens_light.dart
//

// ignore_for_file: avoid-duplicate-constant-values

// Do not edit directly
// Generated on Wed, 23 Oct 2024 14:40:39 GMT
// Generated on Mon, 25 Nov 2024 17:43:45 GMT

import 'package:flutter/widgets.dart';

Expand All @@ -31,7 +30,7 @@ abstract final class DesignTokensLight {
static const Color backgroundAlertWarningPrimary = Color(0xFFE9A504);
static const Color backgroundAlertWarningSecondary = Color(0xFFFFF6E3);
static const Color backgroundBackdrop = Color(0x14121219);
static const Color backgroundBrand = Color(0xFF121219);
static const Color backgroundBrand = Color(0xFF21212E);
static const Color backgroundDatavizBlue = Color(0xFF297AF2);
static const Color backgroundDatavizGreen = Color(0xFF009BA5);
static const Color backgroundDatavizOrange = Color(0xFFFF5C00);
Expand Down Expand Up @@ -77,6 +76,7 @@ abstract final class DesignTokensLight {
static const Color borderAlertInfo = Color(0xFF3782F2);
static const Color borderAlertSuccess = Color(0xFF92F27E);
static const Color borderAlertWarning = Color(0xFFF2B21B);
static const Color borderBrand = Color(0xFF313143);
static const Color borderDisabled = Color(0xFFEFEFF5);
static const Color borderInteractiveBoldActive = Color(0xFF313143);
static const Color borderInteractiveBoldDefault = Color(0xFF52526D);
Expand Down