13 lines
229 B
JavaScript
13 lines
229 B
JavaScript
import { graphql } from "gatsby";
|
|
|
|
export const VibrantColorsFragment = graphql`
|
|
fragment VibrantColors on FileFieldsImageMetaVibrant {
|
|
DarkMuted
|
|
DarkVibrant
|
|
LightMuted
|
|
LightVibrant
|
|
Vibrant
|
|
Muted
|
|
}
|
|
`;
|