e756e29294
Restaurat jobs.lua din git (Quasar fork a suprascris joburile 17mov). Adăugat item map în items.lua (lipsea, rupt rv-maphold). Setat licences.driver = false în config.lua. Override QBCore.Functions.Notify + QBCore:Notify event → 17mov_Hud:ShowNotification (toate notificările merg automat prin 17mov_Hud).
28 lines
572 B
JavaScript
28 lines
572 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ['./index.html', './src/**/*.{js,ts,svelte}'],
|
|
theme: {
|
|
extend: {
|
|
fontFamily: {
|
|
main: 'Roboto',
|
|
},
|
|
colors: {
|
|
// Mantine dark colours
|
|
dark: {
|
|
50: '#C1C2C5',
|
|
100: '#A6A7AB',
|
|
200: '#909296',
|
|
300: '#5C5F66',
|
|
400: '#373A40',
|
|
500: '#2C2E33',
|
|
600: '#25262B',
|
|
700: '#1A1B1E',
|
|
800: '#141517',
|
|
900: '#101113',
|
|
},
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|