From 9d1077b8e4734e0ec8ec0085e27ff173e912540e Mon Sep 17 00:00:00 2001 From: DiD Admin Date: Tue, 18 Aug 2026 16:08:56 -0400 Subject: [PATCH] brand: DiD color palette (Deep Navy/Lime Green/Light Blue/Soft Grey) and Monda/Montserrat fonts --- app/javascript/application.scss | 4 ++++ app/javascript/form.scss | 4 ++++ app/views/layouts/_head_tags.html.erb | 3 +++ app/views/shared/_logo.html.erb | 2 +- tailwind.config.js | 24 ++++++++++++++++-------- tailwind.dynamic.config.js | 8 ++++---- 6 files changed, 32 insertions(+), 13 deletions(-) diff --git a/app/javascript/application.scss b/app/javascript/application.scss index 1050df66..204a04c7 100644 --- a/app/javascript/application.scss +++ b/app/javascript/application.scss @@ -166,3 +166,7 @@ button[disabled] .enabled, button.btn-disabled .enabled { markdown-editor [contenteditable] p { margin-bottom: 18px; } + +h1, h2, h3, h4, h5, h6 { + font-family: theme('fontFamily.heading'); +} diff --git a/app/javascript/form.scss b/app/javascript/form.scss index 92fc6f6a..28f77b73 100644 --- a/app/javascript/form.scss +++ b/app/javascript/form.scss @@ -78,3 +78,7 @@ button[disabled] .enabled, button.btn-disabled .enabled { .font-courier { font-family: "Courier New", Consolas, "Liberation Mono", monospace, ui-monospace, SFMono-Regular, Menlo, Monaco; } + +h1, h2, h3, h4, h5, h6 { + font-family: theme('fontFamily.heading'); +} diff --git a/app/views/layouts/_head_tags.html.erb b/app/views/layouts/_head_tags.html.erb index a6426f4f..6bd5e026 100644 --- a/app/views/layouts/_head_tags.html.erb +++ b/app/views/layouts/_head_tags.html.erb @@ -1,4 +1,7 @@ <%= content_for(:html_title) || (signed_in? ? 'DocuSeal' : 'DocuSeal | Open Source Document Signing') %> + + + <%= render 'shared/meta' %> diff --git a/app/views/shared/_logo.html.erb b/app/views/shared/_logo.html.erb index 57e6e0d9..eea01726 100644 --- a/app/views/shared/_logo.html.erb +++ b/app/views/shared/_logo.html.erb @@ -1,4 +1,4 @@ - + diff --git a/tailwind.config.js b/tailwind.config.js index d6c5b9bf..1323396e 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -2,19 +2,27 @@ module.exports = { plugins: [ require('daisyui') ], + theme: { + extend: { + fontFamily: { + sans: ['Montserrat', '-apple-system', 'BlinkMacSystemFont', '"Segoe UI"', 'Roboto', 'sans-serif'], + heading: ['Monda', 'Montserrat', 'sans-serif'] + } + } + }, daisyui: { themes: [ { docuseal: { 'color-scheme': 'light', - primary: '#e4e0e1', - secondary: '#ef9fbc', - accent: '#eeaf3a', - neutral: '#291334', - 'base-100': '#faf7f5', - 'base-200': '#efeae6', - 'base-300': '#e7e2df', - 'base-content': '#291334', + primary: '#022647', + secondary: '#75B9FC', + accent: '#9BC73C', + neutral: '#022647', + 'base-100': '#FFFFFF', + 'base-200': '#CCD6D0', + 'base-300': '#AFC0B8', + 'base-content': '#022647', '--rounded-btn': '1.9rem', '--tab-border': '2px', '--tab-radius': '.5rem' diff --git a/tailwind.dynamic.config.js b/tailwind.dynamic.config.js index eb7851f4..02ec98d3 100644 --- a/tailwind.dynamic.config.js +++ b/tailwind.dynamic.config.js @@ -8,10 +8,10 @@ module.exports = { theme: { extend: { colors: { - 'base-100': '#faf7f5', - 'base-200': '#efeae6', - 'base-300': '#e7e2df', - 'base-content': '#291334' + 'base-100': '#FFFFFF', + 'base-200': '#CCD6D0', + 'base-300': '#AFC0B8', + 'base-content': '#022647' } } }