Files
simplex-chat/website/tailwind.config.js
sh ac62ba4892 website: file transfer page (#6644)
* add implementation plan

* website: remove unnecessary libsodium direct dependency from file page plan

* website: update file page plan for async encryption, tailwind, no worker

* add product plan

* update product plan based on the feedback

* remove implementation details from product plan

* update product plan

* add updated implementation plan

* website: add build infrastructure for /file route

* website: fix card click and overlay hash handling for /file page

* website: add /file page with XFTP file transfer and protocol overlay

* website: redesign /file page layout and styling

* fix(website): scope hero h1/h2 font overrides to .hero-section-1

* fix(website): fix /file overlay diagram scaling on short viewports

* style(website): match /file page top padding with /directory

* website: remove file page in navbar

* website: switch xftp-web to official one

* website: fix web.sh

* update texts

---------

Co-authored-by: Evgeny Poberezkin <evgeny@poberezkin.com>
2026-03-09 16:22:39 +00:00

37 lines
1.1 KiB
JavaScript

module.exports = {
darkMode : 'class',
content: ["./src/**/*.{html,js,njk}", "!./src/file-assets/**"],
theme: {
extend: {
backgroundImage: {
'gradient-radial': 'radial-gradient(88.77% 102.03% at 92.64% -13.22%, #071C46 0%, #000832 100%)',
'gradient-radial-mobile': 'radial-gradient(77.4% 73.09% at -3.68% 100%, #071C46 0%, #000832 100%)',
},
colors: {
'primary-light': '#0053D0',
'primary-hover-light': '#1661D1',
'primary-pressed-light': '#407AD2',
'primary-dark': '#70F0F9',
'primary-hover-dark': '#66D9E2',
'primary-pressed-dark': '#52ABB4',
'active-blue': '#0197FF',
'black': '#0D0E12',
'grey-black': '#3F484B',
'secondary-bg-light': '#F3FAFF',
'primary-bg-light': '#FFFFFF',
'secondary-bg-dark': '#0B2A59',
'primary-bg-dark': '#000832',
// What makes SimpleX private
'card-bg-light': '#ffffff',
'card-desc-bg-light': '#DBEEFF',
'card-bg-dark': '#071C46',
'card-desc-bg-dark': '#1B325C',
}
},
},
plugins: [],
}