Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
BudgetMaster
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Robert Goldmann
BudgetMaster
Commits
03ceb804
Commit
03ceb804
authored
6 years ago
by
Tobias Ullerich
Browse files
Options
Downloads
Patches
Plain Diff
Removed javafx dependency for category colors
parent
f591ae26
No related branches found
No related tags found
No related merge requests found
Pipeline
#1471
failed
6 years ago
Stage: build
Stage: test
Changes
1
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/main/java/de/deadlocker8/budgetmaster/utils/Colors.java
+18
-18
18 additions, 18 deletions
src/main/java/de/deadlocker8/budgetmaster/utils/Colors.java
with
18 additions
and
18 deletions
src/main/java/de/deadlocker8/budgetmaster/utils/Colors.java
+
18
−
18
View file @
03ceb804
package
de.deadlocker8.budgetmaster.utils
;
import
javafx.scene.paint
.Color
;
import
de.thecodelabs.utils.util
.Color
;
public
class
Colors
{
// CATEGORIES
public
static
final
Color
CATEGORIES_LIGHT_GREY
=
Color
.
web
(
"#EEEEEE"
);
public
static
final
Color
CATEGORIES_GREY
=
Color
.
web
(
"#888888"
);
public
static
final
Color
CATEGORIES_DARK_GREY
=
Color
.
web
(
"#333333"
);
public
static
final
Color
CATEGORIES_LIGHT_YELLOW
=
Color
.
rgb
(
255
,
241
,
119
);
public
static
final
Color
CATEGORIES_YELLOW
=
Color
.
rgb
(
255
,
204
,
0
);
public
static
final
Color
CATEGORIES_ORANGE
=
Color
.
rgb
(
255
,
149
,
0
);
public
static
final
Color
CATEGORIES_RED
=
Color
.
rgb
(
255
,
59
,
48
);
public
static
final
Color
CATEGORIES_DARK_RED
=
Color
.
rgb
(
169
,
3
,
41
);
public
static
final
Color
CATEGORIES_PINK
=
Color
.
rgb
(
255
,
81
,
151
);
public
static
final
Color
CATEGORIES_PURPLE
=
Color
.
rgb
(
155
,
89
,
182
);
public
static
final
Color
CATEGORIES_DARK_PURPLE
=
Color
.
rgb
(
88
,
86
,
214
);
public
static
final
Color
CATEGORIES_BLUE
=
Color
.
rgb
(
0
,
122
,
250
);
public
static
final
Color
CATEGORIES_SOFT_BLUE
=
Color
.
web
(
"#4F85D6"
);
public
static
final
Color
CATEGORIES_LIGHT_BLUE
=
Color
.
rgb
(
90
,
200
,
250
);
public
static
final
Color
CATEGORIES_LIGHT_GREEN
=
Color
.
rgb
(
76
,
217
,
100
);
public
static
final
Color
CATEGORIES_LIME_GREEN
=
Color
.
web
(
"#ABDB64"
);
public
static
final
Color
CATEGORIES_DARK_GREEN
=
Color
.
rgb
(
46
,
124
,
43
);
public
static
final
Color
CATEGORIES_LIGHT_GREY
=
new
Color
(
"#EEEEEE"
);
public
static
final
Color
CATEGORIES_GREY
=
new
Color
(
"#888888"
);
public
static
final
Color
CATEGORIES_DARK_GREY
=
new
Color
(
"#333333"
);
public
static
final
Color
CATEGORIES_LIGHT_YELLOW
=
new
Color
(
255
,
241
,
119
);
public
static
final
Color
CATEGORIES_YELLOW
=
new
Color
(
255
,
204
,
0
);
public
static
final
Color
CATEGORIES_ORANGE
=
new
Color
(
255
,
149
,
0
);
public
static
final
Color
CATEGORIES_RED
=
new
Color
(
255
,
59
,
48
);
public
static
final
Color
CATEGORIES_DARK_RED
=
new
Color
(
169
,
3
,
41
);
public
static
final
Color
CATEGORIES_PINK
=
new
Color
(
255
,
81
,
151
);
public
static
final
Color
CATEGORIES_PURPLE
=
new
Color
(
155
,
89
,
182
);
public
static
final
Color
CATEGORIES_DARK_PURPLE
=
new
Color
(
88
,
86
,
214
);
public
static
final
Color
CATEGORIES_BLUE
=
new
Color
(
0
,
122
,
250
);
public
static
final
Color
CATEGORIES_SOFT_BLUE
=
new
Color
(
"#4F85D6"
);
public
static
final
Color
CATEGORIES_LIGHT_BLUE
=
new
Color
(
90
,
200
,
250
);
public
static
final
Color
CATEGORIES_LIGHT_GREEN
=
new
Color
(
76
,
217
,
100
);
public
static
final
Color
CATEGORIES_LIME_GREEN
=
new
Color
(
"#ABDB64"
);
public
static
final
Color
CATEGORIES_DARK_GREEN
=
new
Color
(
46
,
124
,
43
);
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment