Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
CoFlow
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Sandra Borst
CoFlow
Merge requests
!27
added global color constants for all the colors to be used
Code
Review changes
Check out branch
Open in Workspace
Download
Patches
Plain diff
Expand sidebar
Merged
added global color constants for all the colors to be used
farbenBereitstellen
into
develop
Overview
0
Commits
1
Pipelines
0
Changes
1
Merged
added global color constants for all the colors to be used
Sandra Borst
requested to merge
farbenBereitstellen
into
develop
8 months ago
Overview
0
Commits
1
Pipelines
0
Changes
1
0
0
Merge request reports
Compare
develop
develop (base)
and
latest version
latest version
f5424d53
1 commit,
8 months ago
1 file
+
23
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
InnoLabProjektDektopApp/InnoLabProjektDektopApp/Styles/Styles.xaml
+
23
−
0
View file @ f5424d53
Edit in single-file editor
Open in Web IDE
Show full file
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<!-- Farben definieren -->
<Color x:Key="HIGHLIGHT_PRIMARY_COLOR">#ADD8E6</Color>
<!-- Ersetze durch den exakten Farbwert -->
<Color x:Key="HIGHLIGHT_SECONDARY_COLOR">#1B2736</Color>
<!-- Ersetze durch den exakten Farbwert -->
<Color x:Key="BACKGROUND_PRIMARY_COLOR">#272727</Color>
<!-- Ersetze durch den exakten Farbwert -->
<Color x:Key="BACKGROUND_SECONDARY_COLOR">#333436</Color>
<!-- Ersetze durch den exakten Farbwert -->
<Color x:Key="TEXT_PRIMARY_COLOR">#EEEEEE</Color>
<!-- Ersetze durch den exakten Farbwert -->
<Color x:Key="TEXT_SECONDARY_COLOR">#9E9E9E</Color>
<!-- Ersetze durch den exakten Farbwert -->
<!-- Optional: Farben als Brushes bereitstellen -->
<SolidColorBrush x:Key="HIGHLIGHT_PRIMARY_BRUSH" Color="{StaticResource HIGHLIGHT_PRIMARY_COLOR}" />
<SolidColorBrush x:Key="HIGHLIGHT_SECONDARY_BRUSH" Color="{StaticResource HIGHLIGHT_SECONDARY_COLOR}" />
<SolidColorBrush x:Key="BACKGROUND_PRIMARY_BRUSH" Color="{StaticResource BACKGROUND_PRIMARY_COLOR}" />
<SolidColorBrush x:Key="BACKGROUND_SECONDARY_BRUSH" Color="{StaticResource BACKGROUND_SECONDARY_COLOR}" />
<SolidColorBrush x:Key="TEXT_PRIMARY_BRUSH" Color="{StaticResource TEXT_PRIMARY_COLOR}" />
<SolidColorBrush x:Key="TEXT_SECONDARY_BRUSH" Color="{StaticResource TEXT_SECONDARY_COLOR}" />
<Style TargetType="ToolTip">
<Setter Property="Background" Value="LightYellow" />
<Setter Property="Foreground" Value="Black" />
Loading