Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
frontend
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Jira
External wiki
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
Service Desk
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
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
minerva
frontend
Merge requests
!5
style(tailwind): add colors for theme
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
style(tailwind): add colors for theme
style/add_tailwind_color_theme
into
development
Overview
6
Commits
4
Pipelines
6
Changes
1
All threads resolved!
Show all comments
Merged
mateuszmiko
requested to merge
style/add_tailwind_color_theme
into
development
1 year ago
Overview
6
Commits
4
Pipelines
6
Changes
1
All threads resolved!
Show all comments
Expand
Objective:
Add project colors from the design system.
What has been done:
Added colors to
tailwind.config.ts
0
0
Merge request reports
Compare
development
version 2
62a8e799
1 year ago
version 1
f2886bda
1 year ago
development (base)
and
version 1
latest version
cc227ba8
4 commits,
1 year ago
version 2
62a8e799
3 commits,
1 year ago
version 1
f2886bda
1 commit,
1 year ago
1 file
+
25
−
5
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
tailwind.config.ts
+
25
−
5
Options
import
type
{
Config
}
from
'
tailwindcss
'
import
type
{
Config
}
from
'
tailwindcss
'
;
const
config
:
Config
=
{
content
:
[
@@ -10,11 +10,31 @@ const config: Config = {
extend
:
{
backgroundImage
:
{
'
gradient-radial
'
:
'
radial-gradient(var(--tw-gradient-stops))
'
,
'
gradient-conic
'
:
'
conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))
'
,
'
gradient-conic
'
:
'
conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))
'
,
},
colors
:
{
primary
:
{
100
:
'
#ebf4ff
'
,
500
:
'
#106ad7
'
,
600
:
'
#0055bb
'
,
700
:
'
#004393
'
,
},
greyscale
:
{
500
:
'
#eeeeee
'
,
600
:
'
#cacaca
'
,
700
:
'
#a5a5a5
'
,
},
font
:
{
400
:
'
#6a6977
'
,
500
:
'
#070130
'
,
},
cinnabar
:
'
#ec4d2c
'
,
'
med-sea-green
'
:
'
#3ab65d
'
,
cultured
:
'
#f7f7f8
'
,
'
white-pearl
'
:
'
#ffffff
'
,
},
},
},
plugins
:
[],
}
export
default
config
}
;
export
default
config
;
Loading