diff --git a/app/views/gantts/show.html.erb b/app/views/gantts/show.html.erb
index 45428b03d..08c153d38 100644
--- a/app/views/gantts/show.html.erb
+++ b/app/views/gantts/show.html.erb
@@ -161,7 +161,7 @@
style = ""
style += "width: #{subject_width + 1}px;"
style += "height: #{headers_height}px;"
- style += 'background: #eee;'
+ style += 'background: #f1f3f5;' # oc-gray-1
%>
<%= content_tag(:div, "", :style => style, :class => "gantt_hdr") %>
<%
@@ -198,7 +198,7 @@
<%= content_tag(:div, '', :style => style, :class => "gantt_hdr") %>
<%
style = "height: #{headers_height}px;"
- style += 'background: #eee;'
+ style += 'background: #f1f3f5;' # oc-gray-1
%>
<%= content_tag(:div, content_tag(:p, column.caption, :class => 'gantt_hdr_selected_column_name'), :style => style, :class => "gantt_hdr") %>
<%= content_tag(:div, :class => "gantt_#{column_name} gantt_selected_column_content") do %>
@@ -213,7 +213,7 @@
style = ""
style += "width: #{g_width - 1}px;"
style += "height: #{headers_height}px;"
- style += 'background: #eee;'
+ style += 'background: #f1f3f5;' # oc-gray-1
%>
<%= content_tag(:div, ' '.html_safe, :style => style, :class => "gantt_hdr") %>
diff --git a/lib/redmine/helpers/gantt.rb b/lib/redmine/helpers/gantt.rb
index d23c40b38..f6c18ff54 100644
--- a/lib/redmine/helpers/gantt.rb
+++ b/lib/redmine/helpers/gantt.rb
@@ -30,8 +30,14 @@ module Redmine
# Relation types that are rendered
DRAW_TYPES = {
- IssueRelation::TYPE_BLOCKS => {:landscape_margin => 16, :color => '#F34F4F'},
- IssueRelation::TYPE_PRECEDES => {:landscape_margin => 20, :color => '#628FEA'}
+ IssueRelation::TYPE_BLOCKS => {
+ :landscape_margin => 16,
+ :color => '#fa5252' # oc-red-6
+ },
+ IssueRelation::TYPE_PRECEDES => {
+ :landscape_margin => 20,
+ :color => '#228be6' # oc-blue-6
+ }
}.freeze
UNAVAILABLE_COLUMNS = [:tracker, :id, :subject]