This repository has been archived by the owner on Jan 9, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
46 additions
and
11 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
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
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,31 @@ | ||
import 'package:flutter/material.dart'; | ||
|
||
/// Defines the color palette for the VertexAI UI. | ||
abstract class VertexColors { | ||
/// Navy Color Swatch | ||
static const Color navy = Color(0xff020f30); | ||
|
||
/// Google Blue Color Swatch | ||
static const Color googleBlue = Color(0xff3089f1); | ||
|
||
/// Flutter Cyan Color Swatch | ||
static const Color flutterCyan = Color(0xff00e3ff); | ||
|
||
/// Lilac Color Swatch | ||
static const Color lilac = Color(0xffdde2f6); | ||
|
||
/// Deep Arctic Color Swatch | ||
static const Color deepArctic = Color(0xfff3f6ff); | ||
|
||
/// Arctic Color Swatch | ||
static const Color arctic = Color(0xfffafbff); | ||
|
||
/// Medium Grey Color Swatch | ||
static const Color mediumGrey = Color(0xff919191); | ||
|
||
/// Light Grey Color Swatch | ||
static const Color lightGrey = Color(0xffe2e2e2); | ||
|
||
/// White Color Swatch | ||
static const Color white = Color(0xffffffff); | ||
} |
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