Joshua Gerke
Joshua Gerke
NNuxt
Created by Joshua Gerke on 3/23/2025 in #❓・help
With custom Colors all texts are black
okay maybe some community members can help me out here, some of the tailwind colors are not working and some are working. i want to add all tailwind colors to my color list so i can use "UButton color="anyTailwindColor"" here
16 replies
NNuxt
Created by Joshua Gerke on 3/23/2025 in #❓・help
With custom Colors all texts are black
@kapa.ai okay strange thing is when i set purple to purple the text is white, when i set purple to violet the text is violet. but in tailwind Purple exist? https://tailwindcss.com/docs/colors#color-palette-reference
16 replies
NNuxt
Created by Joshua Gerke on 3/23/2025 in #❓・help
With custom Colors all texts are black
@kapa.ai when i add this in app.config.ts: primary: 'sky', secondary: 'emerald', and this in nuxt.config.ts: 'primary', 'secondary', it works. but with this all texts are white: app.config.ts: colors: { primary: 'sky', secondary: 'emerald', slate: 'slate', gray: 'gray', zinc: 'zinc', stone: 'stone', red: 'red', orange: 'orange', amber: 'amber', yellow: 'yellow', lime: 'lime', green: 'green', emerald: 'emerald', teal: 'teal', cyan: 'cyan', sky: 'sky', blue: 'blue', indigo: 'indigo', violet: 'violet', purple: 'purple', fuchsia: 'fuchsia', pink: 'pink', rose: 'rose', }, nuxt.config.ts: colors: [ 'primary', 'secondary', 'slate', 'gray', 'zinc', 'stone', 'red', 'orange', 'amber', 'yellow', 'lime', 'green', 'emerald', 'teal', 'cyan', 'sky', 'blue', 'indigo', 'violet', 'purple', 'fuchsia', 'pink', 'rose', ],
16 replies
NNuxt
Created by narr07 on 2/6/2025 in #❓・help
Cannot start nuxt: Could not locate the bindings file. (Nuxt Content)
any results? i just want to use the content folder with my .yml files like in nuxt content 2 but it breaks now after the update
7 replies
NNuxt
Created by Joshua Gerke on 10/26/2024 in #❓・help
TailwindCSS/Nesting error
this is my package.json:
{
"name": "nuxt-app",
"private": true,
"type": "module",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare"
},
"dependencies": {
"@iconify-json/heroicons": "^1.2.1",
"@iconify-json/simple-icons": "^1.2.9",
"@nuxt/content": "^2.13.4",
"@nuxt/fonts": "^0.10.2",
"@nuxt/image": "^1.8.1",
"@nuxt/ui": "3.0.0-alpha.7",
"@pinia/nuxt": "^0.5.5",
"@vueuse/nuxt": "^11.1.0",
"@nuxtjs/tailwindcss": "6.12.2-20241014-164133-9d42549",
"nuxt": "^3.13.2",
"nuxt-og-image": "^3.0.6",
"pinia": "^2.2.4",
"tailwindcss": "4.0.0-alpha.30"
},
"devDependencies": {
"@nuxt/eslint": "^0.6.0",
"@nuxthq/studio": "^2.1.1",
"@nuxt/ui-pro": "npm:@nuxt/ui-pro-edge@latest",
"eslint": "^9.13.0",
"vue-tsc": "^2.1.6"
},
"resolutions": {
"@nuxtjs/tailwindcss": "nightly"
},
"packageManager": "[email protected]+sha512.4abf725084d7bcbafbd728bfc7bee61f2f791f977fd87542b3579dcb23504d170d46337945e4c66485cd12d588a0c0e570ed9c477e7ccdd8507cf05f3f92eaca"
}
{
"name": "nuxt-app",
"private": true,
"type": "module",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare"
},
"dependencies": {
"@iconify-json/heroicons": "^1.2.1",
"@iconify-json/simple-icons": "^1.2.9",
"@nuxt/content": "^2.13.4",
"@nuxt/fonts": "^0.10.2",
"@nuxt/image": "^1.8.1",
"@nuxt/ui": "3.0.0-alpha.7",
"@pinia/nuxt": "^0.5.5",
"@vueuse/nuxt": "^11.1.0",
"@nuxtjs/tailwindcss": "6.12.2-20241014-164133-9d42549",
"nuxt": "^3.13.2",
"nuxt-og-image": "^3.0.6",
"pinia": "^2.2.4",
"tailwindcss": "4.0.0-alpha.30"
},
"devDependencies": {
"@nuxt/eslint": "^0.6.0",
"@nuxthq/studio": "^2.1.1",
"@nuxt/ui-pro": "npm:@nuxt/ui-pro-edge@latest",
"eslint": "^9.13.0",
"vue-tsc": "^2.1.6"
},
"resolutions": {
"@nuxtjs/tailwindcss": "nightly"
},
"packageManager": "[email protected]+sha512.4abf725084d7bcbafbd728bfc7bee61f2f791f977fd87542b3579dcb23504d170d46337945e4c66485cd12d588a0c0e570ed9c477e7ccdd8507cf05f3f92eaca"
}
5 replies