- Created `qa-test-output-after-fix.txt` and `qa-test-output.txt` to log results of certificate page authentication tests. - Added `build.sh` for deterministic backend builds in CI, utilizing `go list` for efficiency. - Introduced `codeql_scan.sh` for CodeQL database creation and analysis for Go and JavaScript/TypeScript. - Implemented `dockerfile_check.sh` to validate Dockerfiles for base image and package manager mismatches. - Added `sourcery_precommit_wrapper.sh` to facilitate Sourcery CLI usage in pre-commit hooks.
22 lines
450 B
JavaScript
22 lines
450 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
darkMode: 'class',
|
|
content: [
|
|
"./index.html",
|
|
"./src/**/*.{js,ts,jsx,tsx}",
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
'light-bg': '#f0f4f8', // Light greyish blue
|
|
'dark-bg': '#0f172a',
|
|
'dark-sidebar': '#020617',
|
|
'dark-card': '#1e293b',
|
|
'blue-active': '#1d4ed8',
|
|
'blue-hover': '#2563eb',
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|