Initial commit: OpenScript browser extension

This commit is contained in:
2026-09-08 13:52:35 -07:00
commit 2e986bf09d
20 changed files with 5909 additions and 0 deletions

25
tailwind.config.js Normal file
View File

@@ -0,0 +1,25 @@
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./src/**/*.{html,js,jsx}",
"./src/*.{html,js,jsx}"
],
theme: {
extend: {
colors: {
navy: {
950: '#041322',
900: '#072138',
800: '#0b2d4c',
700: '#0e3a63',
600: '#144e83',
},
slatebg: '#ebedf0',
},
fontFamily: {
mono: ['ui-monospace', 'SFMono-Regular', 'Menlo', 'Monaco', 'Consolas', 'monospace'],
}
},
},
plugins: [],
};